23Object3DBase_TransformedFacesIterator::Object3DBase_TransformedFacesIterator(
Object3DBase* object3DBase)
33 for (
auto& facesEntity : object3DNode->node->getFacesEntities()) {
34 faceCount += facesEntity.getFaces().size();
42 if (object3DNode->mesh->skinning ==
true) {
45 matrix.
set(*object3DNode->nodeTransformationsMatrix);
48 node = object3DNode->node;
59 auto& facesEntities = object3DNode->node->getFacesEntities();
61 auto& faces = facesEntity.getFaces();
64 auto& faceVertexIndices = face.getVertexIndices();
65 auto nodeVerticesTransformed = object3DNode->mesh->vertices;
70 node = object3DNode->node;
83 if (object3DNode->mesh->skinning ==
true) {
86 matrix.
set(*object3DNode->nodeTransformationsMatrix);
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.
const Matrix4x4 & getTransformationsMatrix() const
vector< Object3DNode * > object3dNodes
Object 3D node mesh specifically for rendering.
Object 3d node specifically for rendering.
Matrix4x4 & identity()
Setup identity matrix.
Matrix4x4 & set(float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3)
Set up matrix by values.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.