24 lines
628 B
C++
24 lines
628 B
C++
#include "Core/ObjectFactory.h"
|
|
#include "Math/ContainerBox.h"
|
|
#include "Math/Cylinder.h"
|
|
#include "Math/Geometry.h"
|
|
#include "Math/TriangleMesh.h"
|
|
#include "Math/QuadMesh.h"
|
|
#include "Math/VoxImage.h"
|
|
#include "Math/Assembly.h"
|
|
#include "Math/StructuredData.h"
|
|
|
|
namespace uLib {
|
|
|
|
ULIB_REGISTER_OBJECT(TRS)
|
|
ULIB_REGISTER_OBJECT(ContainerBox)
|
|
ULIB_REGISTER_OBJECT(Cylinder)
|
|
ULIB_REGISTER_OBJECT(Assembly)
|
|
ULIB_REGISTER_OBJECT(CylindricalGeometry)
|
|
ULIB_REGISTER_OBJECT(SphericalGeometry)
|
|
ULIB_REGISTER_OBJECT(TriangleMesh)
|
|
ULIB_REGISTER_OBJECT(QuadMesh)
|
|
ULIB_REGISTER_OBJECT_NAME(VoxImage<Voxel>, "VoxImage")
|
|
|
|
} // namespace uLib
|