TDME2 1.9.121
ModelUtilitiesInternal.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5
6#include <tdme/tdme.h>
11#include <tdme/math/Matrix4x4.h>
13
14using std::map;
15using std::string;
16
23
24/**
25 * Model utilities
26 * @author Andreas Drewke
27 * @version $Id$
28 */
30{
31public:
32 /**
33 * Creates a bounding box from given model
34 * @param model model
35 * @param overriddenNodeTransformationsMatrices overridden node transformations matrices
36 * @return axis aligned bounding box
37 */
38 static BoundingBox* createBoundingBox(Model* model, const map<string, Matrix4x4*> overriddenNodeTransformationsMatrices = map<string, Matrix4x4*>());
39
40 /**
41 * Invert normals of a model
42 * @param model model
43 */
44 static void invertNormals(Model* model);
45
46 /**
47 * Compute model statistics
48 * @param model model
49 * @param modelStatistics model statistics
50 */
51 static void computeModelStatistics(Model* model, ModelStatistics* modelStatistics);
52
53 /**
54 * Compute model statistics
55 * @param object3DModelInternal object 3d model internal
56 * @param modelStatistics model statistics
57 */
58 static void computeModelStatistics(Object3DModelInternal* object3DModelInternal, ModelStatistics* modelStatistics);
59
60 /**
61 * Compute if model 1 equals model 2
62 * @param model1 model 1
63 * @param model2 model 2
64 * @return model1 equals model2
65 */
66 static bool equals(Model* model1, Model* model2);
67
68 /**
69 * Compute if model 1 equals model 2
70 * @param object3DModel1Internal model 1
71 * @param object3DModel2Internal model 2
72 * @return model1 equals model2
73 */
74 static bool equals(Object3DModelInternal* object3DModel1Internal, Object3DModelInternal* object3DModel2Internal);
75
76private:
77 /**
78 * Creates a bounding box from given object3d model
79 * @param object3DModelInternal model
80 * @return axis aligned bounding box
81 */
82 static BoundingBox* createBoundingBox(Object3DModelInternal* object3DModelInternal);
83
84 /**
85 * Creates a bounding box from given object3d model without mesh
86 * @param object3DModelInternal model
87 * @return boundingBox axis aligned bounding box
88 */
89 static BoundingBox* createBoundingBoxNoMesh(Object3DModelInternal* object3DModelInternal);
90
91 /**
92 * Invert normals recursive
93 * @param nodes nodes
94 */
95 static void invertNormals(const map<string, Node*>& nodes);
96
97};
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
static void invertNormals(Model *model)
Invert normals of a model.
static BoundingBox * createBoundingBoxNoMesh(Object3DModelInternal *object3DModelInternal)
Creates a bounding box from given object3d model without mesh.
static void computeModelStatistics(Model *model, ModelStatistics *modelStatistics)
Compute model statistics.
static bool equals(Model *model1, Model *model2)
Compute if model 1 equals model 2.
static BoundingBox * createBoundingBox(Model *model, const map< string, Matrix4x4 * > overriddenNodeTransformationsMatrices=map< string, Matrix4x4 * >())
Creates a bounding box from given model.
Object 3D model To be used in non engine context.
4x4 3D Matrix class
Definition: Matrix4x4.h:24