TDME2
1.9.121
src
tdme
engine
prototype
PrototypePhysics.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/engine/prototype/fwd-tdme.h
>
7
#include <
tdme/engine/prototype/PrototypePhysics_BodyType.h
>
8
#include <
tdme/math/Vector3.h
>
9
10
using
std::string;
11
12
using
tdme::engine::prototype::Prototype
;
13
using
tdme::math::Vector3
;
14
15
/**
16
* Prototype physics body definitions
17
* @author Andreas Drewke
18
* @version $Id$
19
*/
20
class
tdme::engine::prototype::PrototypePhysics
final
21
{
22
private
:
23
PrototypePhysics_BodyType
*
type
{
PrototypePhysics_BodyType::STATIC_RIGIDBODY
};
24
float
mass
{ 0.0f };
25
float
restitution
{ 0.5f };
26
float
friction
{ 0.5f };
27
Vector3
inertiaTensor
;
28
29
public
:
30
31
/**
32
* Public constructor
33
*/
34
inline
PrototypePhysics
():
inertiaTensor
(1.0f, 1.0f, 1.0f) {
35
}
36
37
/**
38
* Destructor
39
*/
40
~PrototypePhysics
();
41
42
/**
43
* @return type
44
*/
45
inline
PrototypePhysics_BodyType
*
getType
()
const
{
46
return
type
;
47
}
48
49
/**
50
* Set type
51
* @param type type
52
*/
53
inline
void
setType
(
PrototypePhysics_BodyType
*
type
) {
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
*/
113
inline
void
setInertiaTensor
(
const
Vector3
&
inertiaTensor
) {
114
this->inertiaTensor =
inertiaTensor
;
115
}
116
117
};
PrototypePhysics_BodyType.h
Vector3.h
tdme::engine::prototype::PrototypePhysics_BodyType
Prototype physics body type enum.
Definition:
PrototypePhysics_BodyType.h:20
tdme::engine::prototype::PrototypePhysics_BodyType::STATIC_RIGIDBODY
static STATIC_DLL_IMPEXT PrototypePhysics_BodyType * STATIC_RIGIDBODY
Definition:
PrototypePhysics_BodyType.h:25
tdme::engine::prototype::PrototypePhysics
Prototype physics body definitions.
Definition:
PrototypePhysics.h:21
tdme::engine::prototype::PrototypePhysics::inertiaTensor
Vector3 inertiaTensor
Definition:
PrototypePhysics.h:27
tdme::engine::prototype::PrototypePhysics::setMass
void setMass(float mass)
Set mass in kg.
Definition:
PrototypePhysics.h:83
tdme::engine::prototype::PrototypePhysics::setInertiaTensor
void setInertiaTensor(const Vector3 &inertiaTensor)
Set inertia tensor.
Definition:
PrototypePhysics.h:113
tdme::engine::prototype::PrototypePhysics::setFriction
void setFriction(float friction)
Set friction.
Definition:
PrototypePhysics.h:68
tdme::engine::prototype::PrototypePhysics::setRestitution
void setRestitution(float restitution)
Set restitution.
Definition:
PrototypePhysics.h:98
tdme::engine::prototype::PrototypePhysics::getMass
float getMass() const
Definition:
PrototypePhysics.h:75
tdme::engine::prototype::PrototypePhysics::friction
float friction
Definition:
PrototypePhysics.h:26
tdme::engine::prototype::PrototypePhysics::PrototypePhysics
PrototypePhysics()
Public constructor.
Definition:
PrototypePhysics.h:34
tdme::engine::prototype::PrototypePhysics::getType
PrototypePhysics_BodyType * getType() const
Definition:
PrototypePhysics.h:45
tdme::engine::prototype::PrototypePhysics::getFriction
float getFriction() const
Definition:
PrototypePhysics.h:60
tdme::engine::prototype::PrototypePhysics::restitution
float restitution
Definition:
PrototypePhysics.h:25
tdme::engine::prototype::PrototypePhysics::getInertiaTensor
const Vector3 & getInertiaTensor() const
Definition:
PrototypePhysics.h:105
tdme::engine::prototype::PrototypePhysics::mass
float mass
Definition:
PrototypePhysics.h:24
tdme::engine::prototype::PrototypePhysics::getRestitution
float getRestitution() const
Definition:
PrototypePhysics.h:90
tdme::engine::prototype::PrototypePhysics::setType
void setType(PrototypePhysics_BodyType *type)
Set type.
Definition:
PrototypePhysics.h:53
tdme::engine::prototype::PrototypePhysics::type
PrototypePhysics_BodyType * type
Definition:
PrototypePhysics.h:23
tdme::engine::prototype::PrototypePhysics::~PrototypePhysics
~PrototypePhysics()
Destructor.
Definition:
PrototypePhysics.cpp:8
tdme::engine::prototype::Prototype
Prototype definition.
Definition:
Prototype.h:49
tdme::math::Vector3
3D vector 3 class
Definition:
Vector3.h:22
fwd-tdme.h
tdme.h
Generated by
1.9.3