TDME2 1.9.121
LODObject3D.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
12#include <tdme/engine/Camera.h>
13#include <tdme/engine/Entity.h>
18#include <tdme/math/fwd-tdme.h>
20
21using std::string;
22using std::to_string;
23
38
39/**
40 * LOD object 3D to be used with engine class
41 * @author Andreas Drewke
42 * @version $Id$
43 */
45 public Transformations,
46 public Entity
47{
48public:
50
51private:
52 friend class Object3DRenderGroup;
53
54 Engine* engine { nullptr };
55 Entity* parentEntity { nullptr };
56 bool frustumCulling { true };
57
58 Model* modelLOD1 { nullptr };
59 Model* modelLOD2 { nullptr };
60 Model* modelLOD3 { nullptr };
66
67 string id;
68 Object3D* objectLOD1 { nullptr };
69 Object3D* objectLOD2 { nullptr };
70 Object3D* objectLOD3 { nullptr };
71 Object3D* objectLOD { nullptr };
73 bool enabled;
84 string shaderId { "default" };
85 string distanceShaderId { "" };
86 float distanceShaderDistance { 50.0f };
87 bool enableEarlyZRejection { false };
88
91
92 /**
93 * Set parent entity, needs to be called before adding to engine
94 * @param entity entity
95 */
96 inline void setParentEntity(Entity* entity) override {
97 this->parentEntity = entity;
98 }
99
100 /**
101 * @return parent entity
102 */
103 inline Entity* getParentEntity() override {
104 return parentEntity;
105 }
106
107 // overridden methods
108 inline void applyParentTransformations(const Transformations& parentTransformations) override {
109 Transformations::applyParentTransformations(parentTransformations);
110 // delegate to LOD objects
111 if (objectLOD1 != nullptr) objectLOD1->fromTransformations(*this);
112 if (objectLOD2 != nullptr) objectLOD2->fromTransformations(*this);
113 if (objectLOD3 != nullptr) objectLOD3->fromTransformations(*this);
114 }
115
116public:
117 /**
118 * Public constructor
119 * @param id id
120 * @param modelLOD1 model LOD 1
121 * @param levelTypeLOD2 LOD level type LOD2
122 * @param modelLOD2MinDistance model LOD 2 min distance
123 * @param modelLOD2 model LOD 2
124 * @param levelTypeLOD3 LOD level type LOD3
125 * @param modelLOD3MinDistance model LOD 3 min distance
126 * @param modelLOD3 model LOD 3
127 * @param lodNoneMinDistance LOD None min distance
128 */
130 const string& id,
138 float lodNoneMinDistance = 150.0f
139 );
140
141 /**
142 * Public destructor
143 */
144 ~LODObject3D();
145
146 // overridden method
147 inline EntityType getEntityType() override {
149 }
150
151 /**
152 * @return LOD object 1
153 */
155 return objectLOD1;
156 }
157
158 /**
159 * @return LOD object 2
160 */
162 return objectLOD2;
163 }
164
165 /**
166 * @return LOD object 3
167 */
169 return objectLOD3;
170 }
171
172 /**
173 * @return LOD object
174 */
176 // set effect colors
177 if (objectLOD != nullptr) {
178 // set effect colors
179 if (objectLOD != nullptr) {
180 if (levelLOD == 3) {
183 } else
184 if (levelLOD == 2) {
187 } else {
188 objectLOD->setEffectColorAdd(Color4(0.0f, 0.0f, 0.0f, 0.0f));
189 objectLOD->setEffectColorMul(Color4(1.0f, 1.0f, 1.0f, 1.0f));
190 }
193 effectColorAdd.add(this->effectColorAdd);
194 effectColorMul.scale(this->effectColorMul);
197 }
198 }
199
200 //
201 return objectLOD;
202 }
203
204 /**
205 * Get current lod object
206 * @param camera camera
207 * @return LOD object to render
208 */
211 // determine LOD object and level type
212 auto objectCamFromLengthSquared = getBoundingBoxTransformed()->computeClosestPointInBoundingBox(camera->getLookFrom()).sub(camera->getLookFrom()).computeLengthSquared();
213 if (objectCamFromLengthSquared >= Math::square(lodNoneMinDistance)) {
214 objectLOD = nullptr;
215 levelLOD = 4;
216 } else
218 objectCamFromLengthSquared >= Math::square(modelLOD3MinDistance)) {
220 levelLOD = 3;
221 } else
223 objectCamFromLengthSquared >= Math::square(modelLOD2MinDistance)) {
225 levelLOD = 2;
226 } else {
228 levelLOD = 1;
229 }
230
231 // set effect colors
232 if (objectLOD != nullptr) {
233 if (levelLOD == 3) {
236 } else
237 if (levelLOD == 2) {
240 } else {
241 objectLOD->setEffectColorAdd(Color4(0.0f, 0.0f, 0.0f, 0.0f));
242 objectLOD->setEffectColorMul(Color4(1.0f, 1.0f, 1.0f, 1.0f));
243 }
246 effectColorAdd.add(this->effectColorAdd);
247 effectColorMul.scale(this->effectColorMul);
250 }
251
252 // done
253 return objectLOD;
254 }
255
256 /**
257 * @return effect color add for LOD2 level
258 */
259 inline const Color4& getEffectColorAddLOD2() const {
260 return effectColorAddLOD2;
261 }
262
263 /**
264 * Set effect color add for LOD2 level
265 * @param effectColorAddLOD2 effect color add for LOD2 level
266 */
268 this->effectColorAddLOD2 = effectColorAddLOD2;
269 }
270
271 /**
272 * @return effect color mul for LOD2 level
273 */
274 inline const Color4& getEffectColorMulLOD2() const {
275 return effectColorMulLOD2;
276 }
277
278 /**
279 * Set effect color mul for LOD2 level
280 * @param effectColorMulLOD2 effect color mul for LOD2 level
281 */
283 this->effectColorMulLOD2 = effectColorMulLOD2;
284 }
285
286 /**
287 * @return effect color add for LOD3 level
288 */
289 inline const Color4& getEffectColorAddLOD3() const {
290 return effectColorAddLOD3;
291 }
292
293 /**
294 * Set effect color add for LOD3 level
295 * @param effectColorAddLOD3 effect color add for LOD3 level
296 */
298 this->effectColorAddLOD3 = effectColorAddLOD3;
299 }
300
301 /**
302 * @return effect color mul for LOD3 level
303 */
304 inline const Color4& getEffectColorMulLOD3() const {
305 return effectColorMulLOD3;
306 }
307
308 /**
309 * Set effect color mul for LOD3 level
310 * @param effectColorMulLOD3 effect color mul for LOD3 level
311 */
313 this->effectColorMulLOD3 = effectColorMulLOD3;
314 }
315
316 // overridden methods
317 void setEngine(Engine* engine) override;
318 void setRenderer(Renderer* renderer) override;
319 void initialize() override;
320 void dispose() override;
321
322 inline bool isEnabled() override {
323 return enabled;
324 }
325
326 void setEnabled(bool enabled) override;
327 bool isFrustumCulling() override;
328 void setFrustumCulling(bool frustumCulling) override;
329 void fromTransformations(const Transformations& transformations) override;
330 void update() override;
331
332 inline BoundingBox* getBoundingBox() override {
333 return objectLOD1->getBoundingBox();
334 }
335
338 }
339
340 inline const Color4& getEffectColorMul() const override {
341 return effectColorMul;
342 }
343
344 inline void setEffectColorMul(const Color4& effectColorMul) override {
345 this->effectColorMul = effectColorMul;
346 }
347
348 inline const Color4& getEffectColorAdd() const override {
349 return effectColorAdd;
350 }
351
352 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
353 this->effectColorAdd = effectColorAdd;
354 }
355
356 inline const string& getId() override {
357 return id;
358 }
359
360 inline bool isPickable() override {
361 return pickable;
362 }
363
364 inline bool isContributesShadows() override {
365 return contributesShadows;
366 }
367
368 inline void setContributesShadows(bool contributesShadows) override {
369 this->contributesShadows = contributesShadows;
373 }
374
375 inline bool isReceivesShadows() override {
376 return receivesShadows;
377 }
378
379 inline void setReceivesShadows(bool receivesShadows) override {
380 this->receivesShadows = receivesShadows;
384 }
385
386 inline void setPickable(bool pickable) override {
387 this->pickable = pickable;
388 }
389
390 inline const Matrix4x4 getNodeTransformationsMatrix(const string& id) {
392 }
393
394 inline const Vector3& getTranslation() const override {
396 }
397
398 inline void setTranslation(const Vector3& translation) override {
400 }
401
402 inline const Vector3& getScale() const override {
404 }
405
406 inline void setScale(const Vector3& scale) override {
408 }
409
410 inline const Vector3& getPivot() const override {
412 }
413
414 inline void setPivot(const Vector3& pivot) override {
416 }
417
418 inline const int getRotationCount() const override {
420 }
421
422 inline Rotation& getRotation(const int idx) override {
424 }
425
426 inline void addRotation(const Vector3& axis, const float angle) override {
427 Transformations::addRotation(axis, angle);
428 }
429
430 inline void removeRotation(const int idx) override {
432 }
433
434 inline const Vector3& getRotationAxis(const int idx) const override {
436 }
437
438 inline void setRotationAxis(const int idx, const Vector3& axis) override {
440 }
441
442 inline const float getRotationAngle(const int idx) const override {
444 }
445
446 inline void setRotationAngle(const int idx, const float angle) override {
448 }
449
450 inline const Quaternion& getRotationsQuaternion() const override {
452 }
453
454 inline const Matrix4x4& getTransformationsMatrix() const override {
456 }
457
458 inline const Transformations& getTransformations() const override {
459 return *this;
460 }
461
462 inline RenderPass getRenderPass() const override {
463 return renderPass;
464 }
465
466 inline void setRenderPass(RenderPass renderPass) override {
467 this->renderPass = renderPass;
471 }
472
473 /**
474 * @return shader id
475 */
476 inline const string& getShader() {
477 return shaderId;
478 }
479
480 /**
481 * Set shader id
482 * @param id shader
483 */
484 inline void setShader(const string& id) {
485 this->shaderId = id;
486 shaderParameters.setShader(shaderId);
487 if (objectLOD1 != nullptr) objectLOD1->setShader(shaderId);
488 if (objectLOD2 != nullptr) objectLOD2->setShader(shaderId);
489 if (objectLOD3 != nullptr) objectLOD3->setShader(shaderId);
490 }
491
492 /**
493 * @return distance shader id
494 */
495 inline const string& getDistanceShader() {
496 return distanceShaderId;
497 }
498
499 /**
500 * Set distance shader id
501 * @param id shader
502 */
503 inline void setDistanceShader(const string& id) {
504 this->distanceShaderId = id;
505 distanceShaderParameters.setShader(distanceShaderId);
509 }
510
511 /**
512 * @return distance shader distance
513 */
516 }
517
518 /**
519 * Set distance shader distance
520 * @param distanceShaderDistance shader
521 */
523 this->distanceShaderDistance = distanceShaderDistance;
527 }
528
529 /**
530 * @return If early z rejection is enabled
531 */
534 }
535
536 /**
537 * Enable/disable early z rejection
538 * @param enableEarlyZRejection enable early z rejection
539 */
541
542 /**
543 * Returns shader parameter for given parameter name, if the value does not exist, the default will be returned
544 * @param shaderId shader id
545 * @param parameterName parameter name
546 * @return shader parameter
547 */
548 inline const ShaderParameter getShaderParameter(const string& parameterName) {
549 return shaderParameters.getShaderParameter(parameterName);
550 }
551
552 /**
553 * Set shader parameter for given parameter name
554 * @param shaderId shader id
555 * @param parameterName parameter name
556 * @param paraemterValue parameter value
557 */
558 inline void setShaderParameter(const string& parameterName, const ShaderParameter& parameterValue) {
559 shaderParameters.setShaderParameter(parameterName, parameterValue);
560 if (objectLOD1 != nullptr) objectLOD1->setShaderParameter(parameterName, parameterValue);
561 if (objectLOD2 != nullptr) objectLOD2->setShaderParameter(parameterName, parameterValue);
562 if (objectLOD3 != nullptr) objectLOD3->setShaderParameter(parameterName, parameterValue);
563 }
564
565 /**
566 * Returns distance shader parameter for given parameter name, if the value does not exist, the default will be returned
567 * @param shaderId shader id
568 * @param parameterName parameter name
569 * @return shader parameter
570 */
571 inline const ShaderParameter getDistanceShaderParameter(const string& parameterName) {
572 return distanceShaderParameters.getShaderParameter(parameterName);
573 }
574
575 /**
576 * Set distance shader parameter for given parameter name
577 * @param shaderId shader id
578 * @param parameterName parameter name
579 * @param paraemterValue parameter value
580 */
581 inline void setDistanceShaderParameter(const string& parameterName, const ShaderParameter& parameterValue) {
582 distanceShaderParameters.setShaderParameter(parameterName, parameterValue);
583 if (objectLOD1 != nullptr) objectLOD1->setDistanceShaderParameter(parameterName, parameterValue);
584 if (objectLOD2 != nullptr) objectLOD2->setDistanceShaderParameter(parameterName, parameterValue);
585 if (objectLOD3 != nullptr) objectLOD3->setDistanceShaderParameter(parameterName, parameterValue);
586 }
587
588};
const Vector3 & getLookFrom() const
Definition: Camera.h:213
Engine main class.
Definition: Engine.h:122
TDME2 engine entity shader parameters.
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
void setShader(const string &shaderId)
Set shader.
const ShaderParameter getShaderParameter(const string &parameterName) const
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
TDME engine entity.
Definition: Entity.h:31
LOD object 3D to be used with engine class.
Definition: LODObject3D.h:47
Object3D * getLOD1Object()
Definition: LODObject3D.h:154
const Matrix4x4 & getTransformationsMatrix() const override
Definition: LODObject3D.h:454
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
Definition: LODObject3D.h:348
RenderPass getRenderPass() const override
Definition: LODObject3D.h:462
void dispose() override
Dispose this object 3d.
void setShader(const string &id)
Set shader id.
Definition: LODObject3D.h:484
LODLevelType levelTypeLOD3
Definition: LODObject3D.h:65
void setTranslation(const Vector3 &translation) override
Set translation.
Definition: LODObject3D.h:398
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Definition: LODObject3D.h:96
void removeRotation(const int idx) override
Remove rotation.
Definition: LODObject3D.h:430
const Color4 & getEffectColorAddLOD3() const
Definition: LODObject3D.h:289
void setPivot(const Vector3 &pivot) override
Set pivot.
Definition: LODObject3D.h:414
const int getRotationCount() const override
Definition: LODObject3D.h:418
const Quaternion & getRotationsQuaternion() const override
Definition: LODObject3D.h:450
~LODObject3D()
Public destructor.
Definition: LODObject3D.cpp:81
void initialize() override
Initiates this object 3d.
bool isReceivesShadows() override
Definition: LODObject3D.h:375
EntityShaderParameters shaderParameters
Definition: LODObject3D.h:89
BoundingBox * getBoundingBox() override
Definition: LODObject3D.h:332
void setRenderPass(RenderPass renderPass) override
Set render pass.
Definition: LODObject3D.h:466
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
Definition: LODObject3D.h:379
const string & getShader()
Definition: LODObject3D.h:476
void addRotation(const Vector3 &axis, const float angle) override
Add rotation.
Definition: LODObject3D.h:426
void update() override
Update transformations.
const string & getId() override
Definition: LODObject3D.h:356
void setPickable(bool pickable) override
Set this object pickable.
Definition: LODObject3D.h:386
Entity * getParentEntity() override
Definition: LODObject3D.h:103
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
Definition: LODObject3D.h:344
const ShaderParameter getShaderParameter(const string &parameterName)
Returns shader parameter for given parameter name, if the value does not exist, the default will be r...
Definition: LODObject3D.h:548
const Color4 & getEffectColorMulLOD2() const
Definition: LODObject3D.h:274
Object3D * determineLODObject(Camera *camera)
Get current lod object.
Definition: LODObject3D.h:209
bool isPickable() override
Definition: LODObject3D.h:360
LODLevelType levelTypeLOD2
Definition: LODObject3D.h:64
const Vector3 & getTranslation() const override
Definition: LODObject3D.h:394
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
Definition: LODObject3D.h:558
const Color4 & getEffectColorMulLOD3() const
Definition: LODObject3D.h:304
const ShaderParameter getDistanceShaderParameter(const string &parameterName)
Returns distance shader parameter for given parameter name, if the value does not exist,...
Definition: LODObject3D.h:571
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
const string & getDistanceShader()
Definition: LODObject3D.h:495
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
Definition: LODObject3D.h:340
const Vector3 & getScale() const override
Definition: LODObject3D.h:402
const Vector3 & getPivot() const override
Definition: LODObject3D.h:410
void setEffectColorAddLOD2(const Color4 &effectColorAddLOD2)
Set effect color add for LOD2 level.
Definition: LODObject3D.h:267
void setEnableEarlyZRejection(bool enableEarlyZRejection)
Enable/disable early z rejection.
bool isEnableEarlyZRejection() const
Definition: LODObject3D.h:532
BoundingBox * getBoundingBoxTransformed() override
Definition: LODObject3D.h:336
void setDistanceShader(const string &id)
Set distance shader id.
Definition: LODObject3D.h:503
void setScale(const Vector3 &scale) override
Set scale.
Definition: LODObject3D.h:406
bool isContributesShadows() override
Definition: LODObject3D.h:364
const Matrix4x4 getNodeTransformationsMatrix(const string &id)
Definition: LODObject3D.h:390
EntityShaderParameters distanceShaderParameters
Definition: LODObject3D.h:90
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
Definition: LODObject3D.h:108
const float getRotationAngle(const int idx) const override
Definition: LODObject3D.h:442
LODObject3D(const string &id, Model *modelLOD1, LODLevelType levelTypeLOD2, float modelLOD2MinDistance, Model *modelLOD2, LODLevelType levelTypeLOD3, float modelLOD3MinDistance, Model *modelLOD3, float lodNoneMinDistance=150.0f)
Public constructor.
Definition: LODObject3D.cpp:19
const Transformations & getTransformations() const override
Definition: LODObject3D.h:458
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setEngine(Engine *engine) override
Set up engine.
Definition: LODObject3D.cpp:88
Object3D * getLOD2Object()
Definition: LODObject3D.h:161
void setEnabled(bool enabled) override
Enable/disable rendering.
Object3D * getLOD3Object()
Definition: LODObject3D.h:168
EntityType getEntityType() override
Definition: LODObject3D.h:147
const Vector3 & getRotationAxis(const int idx) const override
Definition: LODObject3D.h:434
const Color4 & getEffectColorAddLOD2() const
Definition: LODObject3D.h:259
void setEffectColorMulLOD3(const Color4 &effectColorMulLOD3)
Set effect color mul for LOD3 level.
Definition: LODObject3D.h:312
void setDistanceShaderDistance(float distanceShaderDistance)
Set distance shader distance.
Definition: LODObject3D.h:522
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
Definition: LODObject3D.h:368
void setRotationAxis(const int idx, const Vector3 &axis) override
Set rotation axis.
Definition: LODObject3D.h:438
bool isFrustumCulling() override
bool isEnabled() override
Definition: LODObject3D.h:322
void setEffectColorAddLOD3(const Color4 &effectColorAddLOD3)
Set effect color add for LOD3 level.
Definition: LODObject3D.h:297
Rotation & getRotation(const int idx) override
Get rotation at given index.
Definition: LODObject3D.h:422
void setEffectColorMulLOD2(const Color4 &effectColorMulLOD2)
Set effect color mul for LOD2 level.
Definition: LODObject3D.h:282
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
Definition: LODObject3D.h:352
void setDistanceShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set distance shader parameter for given parameter name.
Definition: LODObject3D.h:581
void setRenderer(Renderer *renderer) override
Set up renderer.
Definition: LODObject3D.cpp:98
void setRotationAngle(const int idx, const float angle) override
Definition: LODObject3D.h:446
Object 3D render group for static objects that might be animated by shaders.
Object 3D to be used with engine class.
Definition: Object3D.h:60
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
Definition: Object3D.h:223
void setShader(const string &id)
Set shader.
Definition: Object3D.cpp:116
BoundingBox * getBoundingBox() override
Definition: Object3D.h:215
void setRenderPass(RenderPass renderPass) override
Set render pass.
Definition: Object3D.h:339
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
Definition: Object3D.h:255
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
Definition: Object3D.h:235
void setShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set shader parameter for given parameter name.
Definition: Object3D.h:504
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
Definition: Object3D.cpp:52
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
Definition: Object3D.h:231
BoundingBox * getBoundingBoxTransformed() override
Definition: Object3D.h:219
void setDistanceShader(const string &id)
Set distance shader.
Definition: Object3D.cpp:136
void setDistanceShaderDistance(float distanceShaderDistance)
Set distance shader distance.
Definition: Object3D.h:394
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
Definition: Object3D.h:247
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
Definition: Object3D.h:227
void setDistanceShaderParameter(const string &parameterName, const ShaderParameter &parameterValue)
Set distance shader parameter for given parameter name.
Definition: Object3D.h:524
Rotation representation.
Definition: Rotation.h:18
Shader parameter model class.
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
Rotation & getRotation(const int idx)
Get rotation at given index.
void setRotationAngle(const int idx, const float angle)
void setRotationAxis(const int idx, const Vector3 &axis)
Set rotation axis.
void setTranslation(const Vector3 &translation)
Set translation.
void removeRotation(const int idx)
Remove rotation.
const Quaternion & getRotationsQuaternion() const
virtual void applyParentTransformations(const Transformations &parentTransformations)
Apply parent transformations.
const Vector3 & getScale() const
void setScale(const Vector3 &scale)
Set scale.
const Vector3 & getRotationAxis(const int idx) const
const int getRotationCount() const
const Vector3 & getPivot() const
const Vector3 & getTranslation() const
void setPivot(const Vector3 &pivot)
Set pivot.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
const float getRotationAngle(const int idx) const
void add(float r, float g, float b, float a)
Add to color.
Definition: Color4Base.h:101
Color4Base & scale(float scale)
Scale this color.
Definition: Color4Base.h:169
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Vector3 computeClosestPointInBoundingBox(const Vector3 &point)
Compute closest point in bounding box of given point.
Definition: BoundingBox.h:77
const Matrix4x4 getNodeTransformationsMatrix(const string &id)
Returns transformation matrix for given node.
Definition: Object3DBase.h:255
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
float computeLengthSquared() const
Definition: Vector3.h:209
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Console class.
Definition: Console.h:26