56constexpr int32_t Primitives::SPHERE_SEGMENTS_X;
58constexpr int32_t Primitives::SPHERE_SEGMENTS_Y;
60constexpr int32_t Primitives::CAPSULE_SEGMENTS_X;
62constexpr int32_t Primitives::CAPSULE_SEGMENTS_Y;
67 auto model =
new Model(
id,
id, UpVector::Y_UP, RotationOrder::XYZ,
nullptr);
69 auto material =
new Material(
"primitive");
71 specularMaterialProperties->setAmbientColor(
73 245.0f / 255.0f * 0.5f,
74 40.0f / 255.0f * 0.5f,
75 135.0f / 255.0f * 0.5f,
79 specularMaterialProperties->setDiffuseColor(
81 245.0f / 255.0f * 0.5f,
82 40.0f / 255.0f * 0.5f,
83 135.0f / 255.0f * 0.5f,
87 specularMaterialProperties->setSpecularColor(
Color4(0.0f, 0.0f, 0.0f, 1.0f));
88 material->setSpecularMaterialProperties(specularMaterialProperties);
89 model->getMaterials()[material->getId()] = material;
91 auto node =
new Node(model,
nullptr,
"primitive",
"primitive");
93 auto fvi = BoundingBox::getFacesVerticesIndexes();
95 vector<Vector3> vertices;
97 vertices.push_back(vertex);
100 vector<Vector3> normals;
101 normals.push_back(
Vector3(-1.0f, 0.0f, 0.0f));
102 normals.push_back(
Vector3(+1.0f, 0.0f, 0.0f));
103 normals.push_back(
Vector3(0.0f, -1.0f, 0.0f));
104 normals.push_back(
Vector3(0.0f, +1.0f, 0.0f));
105 normals.push_back(
Vector3(0.0f, 0.0f, -1.0f));
106 normals.push_back(
Vector3(0.0f, 0.0f, +1.0f));
110 faces.push_back(
Face(node, (*fvi)[0][0], (*fvi)[0][1], (*fvi)[0][2], 0, 0, 0));
111 faces.push_back(
Face(node, (*fvi)[1][0], (*fvi)[1][1], (*fvi)[1][2], 0, 0, 0));
113 faces.push_back(
Face(node, (*fvi)[2][0], (*fvi)[2][1], (*fvi)[2][2], 1, 1, 1));
114 faces.push_back(
Face(node, (*fvi)[3][0], (*fvi)[3][1], (*fvi)[3][2], 1, 1, 1));
116 faces.push_back(
Face(node, (*fvi)[4][0], (*fvi)[4][1], (*fvi)[4][2], 2, 2, 2));
117 faces.push_back(
Face(node, (*fvi)[5][0], (*fvi)[5][1], (*fvi)[5][2], 2, 2, 2));
119 faces.push_back(
Face(node, (*fvi)[6][0], (*fvi)[6][1], (*fvi)[6][2], 3, 3, 3));
120 faces.push_back(
Face(node, (*fvi)[7][0], (*fvi)[7][1], (*fvi)[7][2], 3, 3, 3));
122 faces.push_back(
Face(node, (*fvi)[8][0], (*fvi)[8][1], (*fvi)[8][2], 4, 4, 4));
123 faces.push_back(
Face(node, (*fvi)[9][0], (*fvi)[9][1], (*fvi)[9][2], 4, 4, 4));
125 faces.push_back(
Face(node, (*fvi)[10][0], (*fvi)[10][1], (*fvi)[10][2], 5, 5, 5));
126 faces.push_back(
Face(node, (*fvi)[11][0], (*fvi)[11][1], (*fvi)[11][2], 5, 5, 5));
128 FacesEntity nodeFacesEntity(node,
"primitive.facesentity");
132 vector<FacesEntity> nodeFacesEntities;
133 nodeFacesEntities.push_back(nodeFacesEntity);
135 node->setVertices(vertices);
136 node->setNormals(normals);
137 node->setFacesEntities(nodeFacesEntities);
139 model->getNodes()[
"node"] = node;
140 model->getSubNodes()[
"node"] = node;
150 auto model =
new Model(
id,
id, UpVector::Y_UP, RotationOrder::XYZ,
nullptr);
152 auto material =
new Material(
"primitive");
154 specularMaterialProperties->setAmbientColor(
156 245.0f / 255.0f * 0.5f,
157 40.0f / 255.0f * 0.5f,
158 135.0f / 255.0f * 0.5f,
162 specularMaterialProperties->setDiffuseColor(
164 245.0f / 255.0f * 0.5f,
165 40.0f / 255.0f * 0.5f,
166 135.0f / 255.0f * 0.5f,
170 specularMaterialProperties->setSpecularColor(
Color4(0.0f, 0.0f, 0.0f, 1.0f));
171 material->setSpecularMaterialProperties(specularMaterialProperties);
172 model->getMaterials()[material->getId()] = material;
174 auto node =
new Node(model,
nullptr,
"primitive",
"primitive");
176 auto fvi = OrientedBoundingBox::getFacesVerticesIndexes();
178 vector<Vector3> vertices;
179 for (
auto& vertex : orientedBoundingBox->
getVertices()) {
183 auto axes = orientedBoundingBox->
getAxes();
184 vector<Vector3> normals;
194 faces.push_back(
Face(node, fvi[0][0], fvi[0][1], fvi[0][2], 0, 0, 0));
195 faces.push_back(
Face(node, fvi[1][0], fvi[1][1], fvi[1][2], 0, 0, 0));
197 faces.push_back(
Face(node, fvi[2][0], fvi[2][1], fvi[2][2], 1, 1, 1));
198 faces.push_back(
Face(node, fvi[3][0], fvi[3][1], fvi[3][2], 1, 1, 1));
200 faces.push_back(
Face(node, fvi[4][0], fvi[4][1], fvi[4][2], 2, 2, 2));
201 faces.push_back(
Face(node, fvi[5][0], fvi[5][1], fvi[5][2], 2, 2, 2));
203 faces.push_back(
Face(node, fvi[6][0], fvi[6][1], fvi[6][2], 3, 3, 3));
204 faces.push_back(
Face(node, fvi[7][0], fvi[7][1], fvi[7][2], 3, 3, 3));
206 faces.push_back(
Face(node, fvi[8][0], fvi[8][1], fvi[8][2], 4, 4, 4));
207 faces.push_back(
Face(node, fvi[9][0], fvi[9][1], fvi[9][2], 4, 4, 4));
209 faces.push_back(
Face(node, fvi[10][0], fvi[10][1], fvi[10][2], 5, 5, 5));
210 faces.push_back(
Face(node, fvi[11][0], fvi[11][1], fvi[11][2], 5, 5, 5));
212 FacesEntity nodeFacesEntity(node,
"primitive.facesentity");
216 vector<FacesEntity> nodeFacesEntities;
217 nodeFacesEntities.push_back(nodeFacesEntity);
219 node->setVertices(vertices);
220 node->setNormals(normals);
221 node->setFacesEntities(nodeFacesEntities);
223 model->getNodes()[
"node"] = node;
224 model->getSubNodes()[
"node"] = node;
236 auto model =
new Model(
id,
id, UpVector::Y_UP, RotationOrder::XYZ,
nullptr);
238 auto material =
new Material(
"primitive");
240 specularMaterialProperties->setAmbientColor(
242 245.0f / 255.0f * 0.5f,
243 40.0f / 255.0f * 0.5f,
244 135.0f / 255.0f * 0.5f,
248 specularMaterialProperties->setDiffuseColor(
250 245.0f / 255.0f * 0.5f,
251 40.0f / 255.0f * 0.5f,
252 135.0f / 255.0f * 0.5f,
256 specularMaterialProperties->setSpecularColor(
Color4(0.0f, 0.0f, 0.0f, 1.0f));
257 material->setSpecularMaterialProperties(specularMaterialProperties);
258 model->getMaterials()[material->getId()] = material;
260 auto node =
new Node(model,
nullptr,
"primitive",
"primitive");
262 vector<Vector3> vertices;
263 for (
auto ySegment = 0; ySegment < segmentsY + 1; ySegment++)
264 for (
auto xSegment = 0; xSegment < segmentsX; xSegment++) {
267 ((Math::sin(Math::PI * ySegment / segmentsY) * Math::cos(Math::PI * 2 * xSegment / segmentsX))),
268 ((Math::cos(Math::PI * ySegment / segmentsY))),
269 ((Math::sin(Math::PI * ySegment / segmentsY) * Math::sin(Math::PI * 2 * xSegment / segmentsX))))
274 vector<Vector3> normals;
277 int32_t vi0, vi1, vi2;
279 for (
auto y = 0; y < segmentsY + 1; y++) {
280 for (
auto x = 0; x < segmentsX; x++) {
281 vi0 = ((y + 0) % (segmentsY + 1)) * segmentsX + ((x + 0) % (segmentsX));
282 vi1 = ((y + 1) % (segmentsY + 1)) * segmentsX + ((x + 1) % (segmentsX));
283 vi2 = ((y + 1) % (segmentsY + 1)) * segmentsX + ((x + 0) % (segmentsX));
286 array<Vector3, 3> faceVertices = {
292 normals.push_back(normal);
295 faces.push_back(
Face(node, vi0, vi1, vi2, ni + 0, ni + 1, ni + 2));
296 vi0 = ((y + 0) % (segmentsY + 1)) * segmentsX + ((x + 0) % (segmentsX));
297 vi1 = ((y + 0) % (segmentsY + 1)) * segmentsX + ((x + 1) % (segmentsX));
298 vi2 = ((y + 1) % (segmentsY + 1)) * segmentsX + ((x + 1) % (segmentsX));
301 array<Vector3, 3> faceVertices = {
307 normals.push_back(normal);
310 faces.push_back(
Face(node, vi0, vi1, vi2, ni + 0, ni + 1, ni + 2));
314 FacesEntity nodeFacesEntity(node,
"primitive.facesentity");
318 vector<FacesEntity> nodeFacesEntities;
319 nodeFacesEntities.push_back(nodeFacesEntity);
321 node->setVertices(vertices);
322 node->setNormals(normals);
323 node->setFacesEntities(nodeFacesEntities);
325 model->getNodes()[
"node"] = node;
326 model->getSubNodes()[
"node"] = node;
338 auto& a = capsule->
getA();
339 auto& b = capsule->
getB();
345 Vector3 yAxis(0.0f, -1.0f, 0.0f);
347 auto& abNormalizedVectorXYZ = abNormalized.
getArray();
349 if (Math::abs(abNormalizedVectorXYZ[0]) < Math::EPSILON && Math::abs(abNormalizedVectorXYZ[2]) < Math::EPSILON) {
350 rotationAxis.
set(abNormalizedVectorXYZ[1], 0.0f, 0.0f);
352 rotationAxis = Vector3::computeCrossProduct(yAxis, abNormalized).
normalize();
354 auto angle = Vector3::computeAngle(yAxis, abNormalized, yAxis);
355 rotationQuaternion.
rotate(rotationAxis, angle);
356 auto rotationQuaternionMatrixInverted = rotationQuaternion.
computeMatrix();
357 rotationQuaternionMatrixInverted.
invert();
358 auto aInverted = a.
clone().sub(center);
359 auto bInverted = b.
clone().sub(center);
360 aInverted = rotationQuaternionMatrixInverted.
multiply(aInverted);
361 bInverted = rotationQuaternionMatrixInverted.multiply(bInverted);
363 auto model =
new Model(
id,
id, UpVector::Y_UP, RotationOrder::XYZ,
nullptr);
365 auto material =
new Material(
"primitive");
367 specularMaterialProperties->setAmbientColor(
369 245.0f / 255.0f * 0.5f,
370 40.0f / 255.0f * 0.5f,
371 135.0f / 255.0f * 0.5f,
375 specularMaterialProperties->setDiffuseColor(
377 245.0f / 255.0f * 0.5f,
378 40.0f / 255.0f * 0.5f,
379 135.0f / 255.0f * 0.5f,
383 specularMaterialProperties->setSpecularColor(
Color4(0.0f, 0.0f, 0.0f, 1.0f));
384 material->setSpecularMaterialProperties(specularMaterialProperties);
385 model->getMaterials()[material->getId()] = material;
387 auto node =
new Node(model,
nullptr,
"primitive",
"primitive");
389 vector<Vector3> vertices;
391 for (
auto ySegment = 0; ySegment < segmentsY / 2; ySegment++)
392 for (
auto xSegment = 0; xSegment < segmentsX; xSegment++) {
396 ((Math::sin(Math::PI * ySegment / segmentsY) * Math::cos(Math::PI * 2 * xSegment / segmentsX))),
397 ((Math::cos(Math::PI * ySegment / segmentsY))),
398 ((Math::sin(Math::PI * ySegment / segmentsY) * Math::sin(Math::PI * 2 * xSegment / segmentsX)))
401 vertex.
scale(radius);
402 vertex = rotationQuaternionMatrixInverted.
multiply(vertex);
403 vertex.
add(bInverted);
407 for (
auto ySegment = segmentsY / 2; ySegment < segmentsY + 1; ySegment++)
408 for (
auto xSegment = 0; xSegment < segmentsX; xSegment++) {
412 ((Math::sin(Math::PI * ySegment / segmentsY) * Math::cos(Math::PI * 2 * xSegment / segmentsX))),
413 ((Math::cos(Math::PI * ySegment / segmentsY))),
414 ((Math::sin(Math::PI * ySegment / segmentsY) * Math::sin(Math::PI * 2 * xSegment / segmentsX)))
417 vertex.
scale(radius);
418 vertex = rotationQuaternionMatrixInverted.
multiply(vertex);
419 vertex.
add(aInverted);
423 vector<Vector3> normals;
426 int32_t vi0, vi1, vi2;
428 for (
auto y = 0; y < segmentsY + 1; y++) {
429 for (
auto x = 0; x < segmentsX; x++) {
430 vi0 = ((y + 0) % (segmentsY + 1)) * segmentsX + ((x + 0) % (segmentsX));
431 vi1 = ((y + 1) % (segmentsY + 1)) * segmentsX + ((x + 1) % (segmentsX));
432 vi2 = ((y + 1) % (segmentsY + 1)) * segmentsX + ((x + 0) % (segmentsX));
435 array<Vector3, 3> faceVertices = {
441 normals.push_back(normal);
444 faces.push_back(
Face(node, vi0, vi1, vi2, ni + 0, ni + 1, ni + 2));
445 vi0 = ((y + 0) % (segmentsY + 1)) * segmentsX + ((x + 0) % (segmentsX));
446 vi1 = ((y + 0) % (segmentsY + 1)) * segmentsX + ((x + 1) % (segmentsX));
447 vi2 = ((y + 1) % (segmentsY + 1)) * segmentsX + ((x + 1) % (segmentsX));
449 array<Vector3, 3> faceVertices = {
455 normals.push_back(normal);
458 faces.push_back(
Face(node, vi0, vi1, vi2, ni + 0, ni + 1, ni + 2));
462 FacesEntity nodeFacesEntity(node,
"primitive.facesentity");
466 vector<FacesEntity> nodeFacesEntities;
467 nodeFacesEntities.push_back(nodeFacesEntity);
469 node->setVertices(vertices);
470 node->setNormals(normals);
471 node->setFacesEntities(nodeFacesEntities);
473 model->getNodes()[
"node"] = node;
474 model->getSubNodes()[
"node"] = node;
483 Console::println(
"Primitives::createConvexMeshModel(): This is not supported. Rather load the model and use Primitives::setupConvexMeshModel().");
492 auto material =
new Material(
"primitive");
494 specularMaterialProperties->setAmbientColor(
496 245.0f / 255.0f * 0.5f,
497 40.0f / 255.0f * 0.5f,
498 135.0f / 255.0f * 0.5f,
502 specularMaterialProperties->setDiffuseColor(
504 245.0f / 255.0f * 0.5f,
505 40.0f / 255.0f * 0.5f,
506 135.0f / 255.0f * 0.5f,
510 specularMaterialProperties->setSpecularColor(
Color4(0.0f, 0.0f, 0.0f, 1.0f));
511 material->setSpecularMaterialProperties(specularMaterialProperties);
518 for (
auto it: nodes) {
519 Node* node = it.second;
521 for (
auto& faceEntity : facesEntities) {
522 faceEntity.setMaterial(material);
539 if (
dynamic_cast<Sphere*
>(boundingVolume) !=
nullptr) {
542 if (
dynamic_cast<Capsule*
>(boundingVolume) !=
nullptr) {
545 if (
dynamic_cast<ConvexMesh*
>(boundingVolume) !=
nullptr) {
548 Console::println(
string(
"Primitives::createModel(): unsupported bounding volume"));
Represents a model face, consisting of vertex, normal, tangent and bitangent vectors,...
Node faces entity A node can have multiple entities containing faces and a applied material.
void setMaterial(Material *material)
Set up the entity's material.
void setFaces(const vector< Face > &faces)
Set up entity's faces.
Representation of a 3d model.
const Matrix4x4 & getImportTransformationsMatrix()
void setImportTransformationsMatrix(const Matrix4x4 &importTransformationsMatrix)
Set import transformations matrix.
map< string, Node * > & getSubNodes()
Returns object's sub nodes.
map< string, Material * > & getMaterials()
Returns all object materials.
void setFacesEntities(const vector< FacesEntity > &facesEntities)
Set up faces entities.
const vector< FacesEntity > & getFacesEntities() const
map< string, Node * > & getSubNodes()
Represents rotation orders of a model.
Represents specular material properties.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
const vector< Vector3 > & getVertices() const
Returns bounding box vertices.
Bounding volume interface.
const Vector3 & getCenter() const
Capsule physics primitive.
const Vector3 & getB() const
const Vector3 & getA() const
Convex mesh physics primitive.
Oriented bounding box physics primitive.
const array< Vector3, 8 > getVertices() const
const array< Vector3, 3 > & getAxes() const
Sphere physics primitive.
Matrix4x4 clone()
Clones this matrix.
Matrix4x4 & invert()
Inverts the matrix.
Matrix4x4 & scale(float s)
Scales this matrix.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Quaternion & rotate(const Vector3 &axis, float angle)
Creates a rotation quaternion.
Quaternion & multiply(const Quaternion q)
Multiplies this quaternion with quaternion q.
Matrix4x4 computeMatrix() const
Computes a matrix from given.
Quaternion & identity()
Set up quaternion identity.
Quaternion & scale(float value)
Scales this quaternion with given value.
Quaternion & add(const Quaternion &q)
Adds given quaternion q to this quaternion.
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
array< float, 3 > & getArray() const
static void println()
Print new line to console.
Helper class to create models from physics primitive bounding volumes.
static constexpr int32_t SPHERE_SEGMENTS_X
static Vector3 transformVector3(BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &vector)
Transforms a given ReactPhysics3D vector with bounding volume transform.
static void setupConvexMeshModel(Model *model)
Set up a convex mesh model.
static Model * createBoundingBoxModel(BoundingBox *boundingBox, const string &id)
Creates a model from bounding box.
static void setupConvexMeshMaterial(const map< string, Node * > &nodes, Material *material)
Set up convex mesh material.
static Model * createSphereModel(Sphere *sphere, const string &id, int32_t segmentsX, int32_t segmentsY)
Creates a model from oriented bounding box.
static Vector3 transformVector3Normal(BoundingVolume *boundingVolume, const reactphysics3d::Vector3 &normal)
Transforms a given ReactPhysics3D vector with bounding volume transform.
static constexpr int32_t SPHERE_SEGMENTS_Y
static Model * createModel(BoundingBox *boundingVolume, const string &id)
Creates a model from bounding volume.
static Model * createConvexMeshModel(ConvexMesh *mesh, const string &id)
Creates a model from convex mesh.
static Model * createOrientedBoundingBoxModel(OrientedBoundingBox *orientedBoundingBox, const string &id)
Creates a model from oriented bounding box.
static constexpr int32_t CAPSULE_SEGMENTS_Y
static constexpr int32_t CAPSULE_SEGMENTS_X
static Model * createCapsuleModel(Capsule *capsule, const string &id, int32_t segmentsX, int32_t segmentsY)
Creates a model from capsule.
static reactphysics3d::Vector3 toRP3DVector3(const Vector3 &vector)
Converts a TDME2 vector to ReactPhysics3D vector.