TDME2 1.9.121
BoundingVolume.h
Go to the documentation of this file.
1#pragma once
2
3#include <ext/reactphysics3d/src/collision/shapes/AABB.h>
4#include <ext/reactphysics3d/src/collision/shapes/CollisionShape.h>
5#include <ext/reactphysics3d/src/mathematics/Transform.h>
6
7#include <tdme/tdme.h>
12#include <tdme/math/fwd-tdme.h>
13#include <tdme/math/Vector3.h>
15
19
20/**
21 * Bounding volume interface
22 * @author Andreas Drewke
23 * @version $Id$
24 */
26{
27 friend class BoundingBox;
28 friend class Capsule;
29 friend class ConvexMesh;
30 friend class OrientedBoundingBox;
31 friend class Sphere;
35
36protected:
40 reactphysics3d::CollisionShape* collisionShape { nullptr };
41 reactphysics3d::Transform collisionShapeLocalTransform;
42 reactphysics3d::Transform collisionShapeTransform;
43 reactphysics3d::AABB collisionShapeAABB;
46
47 /**
48 * Compute bounding box
49 */
50 void computeBoundingBox();
51
52public:
53 /**
54 * Destructor
55 */
56 virtual ~BoundingVolume();
57
58 /**
59 * Transform bounding volume from given transformations
60 * @param transformations transformations
61 */
62 virtual void fromTransformations(const Transformations& transformations);
63
64 /**
65 * Get local scale
66 * @return scale
67 */
68 const Vector3& getScale();
69
70 /**
71 * Set local scale
72 * @return if collision shape had been recreated
73 */
74 virtual void setScale(const Vector3& scale) = 0;
75
76 /**
77 * @return center
78 */
79 const Vector3& getCenter() const;
80
81 /**
82 * @return transformed center
83 */
84 const Vector3& getCenterTransformed() const;
85
86 /**
87 * Get bounding box transformed
88 * @return bounding box
89 */
91
92 /**
93 * Clones this bounding volume
94 * @return cloned bounding volume
95 */
96 virtual BoundingVolume* clone() const = 0;
97
98};
Transformations which contain scale, rotations and translation.
Dynamic rigid/static rigid/collision body class.
Definition: Body.h:43
Dynamic physics world class.
Definition: World.h:38
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
virtual void setScale(const Vector3 &scale)=0
Set local scale.
reactphysics3d::Transform collisionShapeLocalTransform
const Vector3 & getCenterTransformed() const
reactphysics3d::Transform collisionShapeTransform
virtual void fromTransformations(const Transformations &transformations)
Transform bounding volume from given transformations.
reactphysics3d::CollisionShape * collisionShape
virtual BoundingVolume * clone() const =0
Clones this bounding volume.
const Vector3 & getScale()
Get local scale.
void computeBoundingBox()
Compute bounding box.
BoundingBox & getBoundingBoxTransformed()
Get bounding box transformed.
Capsule physics primitive.
Definition: Capsule.h:18
Convex mesh physics primitive.
Definition: ConvexMesh.h:33
Oriented bounding box physics primitive.
Sphere physics primitive.
Definition: Sphere.h:18
3D vector 3 class
Definition: Vector3.h:22
Helper class to create models from physics primitive bounding volumes.
Definition: Primitives.h:34