mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-09 13:52:23 +00:00
4d12bf7e8d
Cgal kernel skeleton
14 lines
368 B
C++
14 lines
368 B
C++
#include "CgalEntityMappingUndefine.h"
|
|
#define SHAPES(T) \
|
|
if ( l->is(T::Class()) ) { \
|
|
try { \
|
|
return convert((T*)l,r); \
|
|
} catch (const std::exception& e) { \
|
|
Logger::Message(Logger::LOG_ERROR, std::string(e.what()) + "\nFailed to convert:", l->entity); \
|
|
} \
|
|
return false; \
|
|
}
|
|
#include "CgalEntityMappingDefine.h"
|
|
|
|
#include "CgalEntityMapping.h"
|