38 #ifndef COAL_MESH_LOADER_ASSIMP_H
39 #define COAL_MESH_LOADER_ASSIMP_H
64 void load(
const std::string& resource_path);
88 template <
class BoundingVolume>
94 int res = mesh->beginModel();
100 buildMesh(scale, scene, (
unsigned)mesh->num_vertices, tv);
115 template <
class BoundingVolume>
117 const std::string& resource_path,
const coal::Vec3s& scale,
120 scene.
load(resource_path);
A class describing the bounding hierarchy of a mesh model or a point cloud model (which is viewed as ...
Definition: BVH_model.h:321
#define COAL_DLLAPI
Definition: config.hh:88
#define COAL_THROW_PRETTY(message, exception)
Definition: fwd.hh:64
void meshFromAssimpScene(const coal::Vec3s &scale, const aiScene *scene, const shared_ptr< BVHModel< BoundingVolume > > &mesh)
Convert an assimp scene to a mesh.
Definition: assimp.h:89
void buildMesh(const coal::Vec3s &scale, const aiScene *scene, unsigned vertices_offset, TriangleAndVertices &tv)
Recursive procedure for building a mesh.
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
void loadPolyhedronFromResource(const std::string &resource_path, const coal::Vec3s &scale, const shared_ptr< BVHModel< BoundingVolume > > &polyhedron)
Read a mesh file and convert it to a polyhedral mesh.
Definition: assimp.h:116
@ BVH_OK
Definition: BVH_internal.h:64
Assimp::Importer * importer
Definition: assimp.h:66
aiScene const * scene
Definition: assimp.h:67
void load(const std::string &resource_path)
std::vector< coal::Triangle > triangles_
Definition: assimp.h:57
std::vector< coal::Vec3s > vertices_
Definition: assimp.h:56