loebl
loebl
To chime in on that: That was in PR #27 The way it currently implemented is, it relies on graph code to be inline in the doxygen file. References to...
sure, no problem
IFC++ uses a large number of classes, as it directly maps them to defined entities in the IFC specification. The IFC writer (writerstep.cpp) basically uses all of them, resulting in...
The TessellatedItemConverter uses templated lambdas from C++14. You need at least VS 2015 for those. If I have time in the following days I might be able to write provide...
Ok, I changed the lines. It should compile under VS2013 now, but I haven't tested it. Pull the changes from this branch (it should simply fast forward if you checked...
enabling OpenMP in gcc needs `-fopenmp` as far as I know (It implies -pthreads, so it should automatically compile and link against that too: https://gcc.gnu.org/onlinedocs/gcc/C-Dialect-Options.html#C-Dialect-Options). Plus the IFCpp define for...
I haven't noticed a memory leak while using IFC++, but I might need to look closer. I am using it on Win10, x64 build with VS 2015 I am using...
Small update: I tried my shot at [heap debugging with the Microsoft C runtime](https://msdn.microsoft.com/en-us/library/974tc9t1.aspx). My tests did not indicate memory leaks during my usage of IFCPP. I modified my code...
IFC++ supports only IFC4Add2 (4.0.2.0) Import of older versions is working on base of the compatibility between specifications (and possibly a few hacks in the parser, but they are rare...
It seems that carve is hitting some floating point border case, so that it errs out and fails to generate a polygon after cutting the hole. I also encountered problems...