TDME2 1.9.121
Sphere.cpp
Go to the documentation of this file.
2
3#include <ext/reactphysics3d/src/collision/shapes/SphereShape.h>
4
5#include <tdme/tdme.h>
6#include <tdme/math/Math.h>
7#include <tdme/math/Vector3.h>
8
9using std::to_string;
10
14
15Sphere::Sphere()
16{
17 collisionShape = new reactphysics3d::SphereShape(radius);
18 radius = Math::EPSILON;
19}
20
21Sphere::Sphere(const Vector3& center, float radius, const Vector3& scale)
22{
23 this->center.set(center);
24 this->radius = radius;
26}
27
28float Sphere::getRadius() const
29{
30 return radius;
31}
32
33void Sphere::setScale(const Vector3& scale) {
34 // store new scale
35 this->scale.set(scale);
36
37 // remove old collision shape
38 if (collisionShape != nullptr) delete collisionShape;
39
42 collisionShape = new reactphysics3d::SphereShape(
43 Math::max(Math::EPSILON, radius * Math::max(Math::abs(scale.getZ()), Math::max(Math::abs(scale.getX()), Math::abs(scale.getY()))))
44 );
45 // compute bounding box
47}
48
50{
51 return new Sphere(center, radius, scale);
52}
53
reactphysics3d::Transform collisionShapeLocalTransform
reactphysics3d::CollisionShape * collisionShape
void computeBoundingBox()
Compute bounding box.
Sphere physics primitive.
Definition: Sphere.h:18
Sphere()
Public constructor.
Definition: Sphere.cpp:15
void setScale(const Vector3 &scale) override
Set local scale.
Definition: Sphere.cpp:33
BoundingVolume * clone() const override
Clones this bounding volume.
Definition: Sphere.cpp:49
Standard math functions.
Definition: Math.h:21
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349