Cgal kernel skeleton (#3)

Cgal kernel skeleton
This commit is contained in:
Thomas Krijnen
2017-01-16 14:04:31 +01:00
committed by GitHub
parent 3958204c1c
commit 4d12bf7e8d
22 changed files with 688 additions and 36 deletions
@@ -0,0 +1,13 @@
#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"