TDME2 1.9.121
PrototypePhysics.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8#include <tdme/math/Vector3.h>
9
10using std::string;
11
14
15/**
16 * Prototype physics body definitions
17 * @author Andreas Drewke
18 * @version $Id$
19 */
21{
22private:
24 float mass { 0.0f };
25 float restitution { 0.5f };
26 float friction { 0.5f };
28
29public:
30
31 /**
32 * Public constructor
33 */
34 inline PrototypePhysics(): inertiaTensor(1.0f, 1.0f, 1.0f) {
35 }
36
37 /**
38 * Destructor
39 */
41
42 /**
43 * @return type
44 */
46 return type;
47 }
48
49 /**
50 * Set type
51 * @param type type
52 */
54 this->type = type;
55 }
56
57 /**
58 * @return friction
59 */
60 inline float getFriction() const {
61 return friction;
62 }
63
64 /**
65 * Set friction
66 * @param friction friction
67 */
68 inline void setFriction(float friction) {
69 this->friction = friction;
70 }
71
72 /**
73 * @return mass
74 */
75 inline float getMass() const {
76 return mass;
77 }
78
79 /**
80 * Set mass in kg
81 * @param mass mass
82 */
83 inline void setMass(float mass) {
84 this->mass = mass;
85 }
86
87 /**
88 * @return restitution / bounciness
89 */
90 inline float getRestitution() const {
91 return restitution;
92 }
93
94 /**
95 * Set restitution
96 * @param restitution restitution
97 */
98 inline void setRestitution(float restitution) {
99 this->restitution = restitution;
100 }
101
102 /**
103 * @return inertia tensor
104 */
105 inline const Vector3& getInertiaTensor() const {
106 return inertiaTensor;
107 }
108
109 /**
110 * Set inertia tensor
111 * @param inertiaTensor inertia tensor
112 */
114 this->inertiaTensor = inertiaTensor;
115 }
116
117};
static STATIC_DLL_IMPEXT PrototypePhysics_BodyType * STATIC_RIGIDBODY
Prototype physics body definitions.
void setMass(float mass)
Set mass in kg.
void setInertiaTensor(const Vector3 &inertiaTensor)
Set inertia tensor.
void setFriction(float friction)
Set friction.
void setRestitution(float restitution)
Set restitution.
PrototypePhysics_BodyType * getType() const
void setType(PrototypePhysics_BodyType *type)
Set type.
Prototype definition.
Definition: Prototype.h:49
3D vector 3 class
Definition: Vector3.h:22