57 auto normal = Vector3::computeCrossProduct(
58 (vertices)[1].clone().sub((vertices)[0]),
59 (vertices)[2].clone().sub((vertices)[0])
62 if (normal.computeLengthSquared() < Math::EPSILON * Math::EPSILON) {
64 normal.set(0.0f, 1.0f, 0.0f);
83 array<Vector3,3> normals;
84 for (
auto i = 0; i < vertices.size(); i++) {
85 normals[i].set(normal);
178 static void cloneNode(
Node* sourceNode,
Model* targetModel,
Node* targetParentNode =
nullptr,
bool cloneMesh =
true);
189 static void partitionNode(
Node* sourceNode, map<string, Model*>& modelsByPartition, map<string, Vector3>& modelsPosition,
const Matrix4x4& parentTransformationsMatrix);
205 array<Vector3, 3> vertices;
206 auto normalCount = 0;
207 normal.
set(0.0f, 0.0f, 0.0f);
209 for (
auto& face: facesEntity.getFaces()) {
210 for (
auto i = 0; i < vertices.size(); i++) {
212 normal.
add(normals[face.getNormalIndices()[0]]);
217 if (normalCount == 6)
break;
219 if (normalCount == 6)
break;
221 if (normalCount > 1) {
249 static void partition(
Model* model,
const Transformations& transformations, map<string, Model*>& modelsByPartition, map<string, Vector3>& modelsPosition);
281 static Model*
optimizeModel(
Model* model,
const string& texturePathName =
string(),
const vector<string>& excludeDiffuseTextureFileNamePatterns = vector<string>());
318 static void checkForOptimization(
Node* node, map<string, int>& materialUseCount,
const vector<string>& excludeDiffuseTextureFileNamePatterns);
343 static void optimizeNode(
Node* sourceNode,
Model* targetModel,
int diffuseTextureAtlasSize,
const map<string, int>& diffuseTextureAtlasIndices,
const vector<string>& excludeDiffuseTextureFileNamePatterns);
Representation of a 3d model.
const vector< FacesEntity > & getFacesEntities() const
const vector< Vector3 > & getVertices() const
Skinning definition for nodes.
bool equals(const Vector3 &v) const
Compares this vector with given vector.
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 & add(const Vector3 &v)
Adds a vector.