22#include "../variant/box.h"
23#include "../object/object.h"
35 std::shared_ptr<std::map<std::string, std::shared_ptr<Vertices>>>
vertices;
40 std::shared_ptr<BoundingBox>
getBoundingBox(
const std::shared_ptr<Geometry>& geometry,
const std::string& attribName =
"positions");
The Geometry class is a collection of geometric data.
Definition geometry.h:33
std::shared_ptr< std::map< std::string, std::shared_ptr< Vertices > > > vertices
This member is a shared pointer to a map object using a string as the key and a Vertices as the vaule...
Definition geometry.h:35
std::shared_ptr< BoundingBox > boundingBox
Definition geometry.h:37
std::shared_ptr< Indices > indices
This member is a shared pointer to a Indices object that represents the index data specifying how the...
Definition geometry.h:36
std::shared_ptr< BoundingBox > getBoundingBox(const std::shared_ptr< Geometry > &geometry, const std::string &attribName="positions")