50PrototypeBoundingVolume::PrototypeBoundingVolume(
int id,
Prototype* prototype)
79 model = Primitives::createModel(
84 string(
"_model_bv.") +
97 model = Primitives::createModel(
102 string(
"_model_bv.") +
116 model = Primitives::createModel(
121 string(
"_model_bv.") +
135 model = Primitives::createModel(
140 string(
"_model_bv.") +
169 auto convexMeshModel = ModelReader::read(
173 auto convexMeshObject3DModel =
new Object3DModel(convexMeshModel);
175 delete convexMeshObject3DModel;
176 Primitives::setupConvexMeshModel(convexMeshModel);
177 model = convexMeshModel;
179 Console::print(
string(
"PrototypeBoundingVolume::setupConvexMesh(): An error occurred: " +
convexMeshFile +
": "));
180 Console::println(
string(exception.what()));
194 auto convexMeshModel = TMReader::read(
199 auto convexMeshObject3DModel =
new Object3DModel(convexMeshModel);
201 delete convexMeshObject3DModel;
202 Primitives::setupConvexMeshModel(convexMeshModel);
203 model = convexMeshModel;
205 Console::print(
string(
"PrototypeBoundingVolume::setupConvexMesh(): An error occurred: "));
206 Console::println(
string(exception.what()));
Representation of a 3d model.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Bounding volume interface.
Capsule physics primitive.
Convex mesh physics primitive.
Oriented bounding box physics primitive.
Sphere physics primitive.
Prototype bounding volume definition.
void clearConvexMesh()
Clear convex mesh.
vector< uint8_t > convexMeshData
BoundingVolume * boundingVolume
void setupNone()
Setup bounding volume none.
void setupObb(const Vector3 ¢er, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, const Vector3 &halfExtension)
Setup bounding volume oriented bounding box.
~PrototypeBoundingVolume()
Destructor.
void setupSphere(const Vector3 ¢er, float radius)
Setup bounding volume sphere.
void setupAabb(const Vector3 &min, const Vector3 &max)
Setup bounding volume bounding box.
void setupCapsule(const Vector3 &a, const Vector3 &b, float radius)
Setup bounding volume capsule.
void setupConvexMesh(const string &pathName, const string &fileName)
Setup convex mesh.
const string & getFileName()
File system singleton class.
Helper class to create models from physics primitive bounding volumes.
std::exception Exception
Exception base class.