TDME2 1.9.121
|
Lines object internal. More...
#include <tdme/engine/subsystems/lines/LinesObject3DInternal.h>
Public Member Functions | |
LinesObject3DInternal (const string &id, float lineWidth, const vector< Vector3 > &points, const Color4 &color, const vector< Color4 > &colors={}, Texture *texture=nullptr) | |
Public constructor. More... | |
virtual | ~LinesObject3DInternal () |
Destructor. More... | |
const string & | getId () |
void | setRenderer (Renderer *renderer) |
Set renderer. More... | |
void | setEngine (Engine *engine) |
Set engine. More... | |
bool | isEnabled () |
void | setEnabled (bool enabled) |
Set enabled. More... | |
const Color4 & | getEffectColorMul () const |
void | setEffectColorMul (const Color4 &effectColorMul) |
Set effect color mul. More... | |
const Color4 & | getEffectColorAdd () const |
void | setEffectColorAdd (const Color4 &effectColorAdd) |
Set effect color add. More... | |
bool | isPickable () const |
void | setPickable (bool pickable) |
Set pickable. More... | |
bool | isContributesShadows () |
void | setContributesShadows (bool contributesShadows) |
Enable/disable contributes shadows. More... | |
bool | isReceivesShadows () |
void | setReceivesShadows (bool receivesShadows) |
Enable/disable receives shadows. More... | |
BoundingBox * | getBoundingBox () |
BoundingBox * | getBoundingBoxTransformed () |
float | getLineWidth () |
int32_t | getTextureId () |
void | update () override |
Update transformations. More... | |
void | fromTransformations (const Transformations &transformations) override |
From transformations. More... | |
void | initialize () |
Initialize. More... | |
void | dispose () |
Dispose. More... | |
![]() | |
Transformations () | |
Public constructor. More... | |
virtual | ~Transformations () |
Destructor. More... | |
const Vector3 & | getTranslation () const |
void | setTranslation (const Vector3 &translation) |
Set translation. More... | |
const Vector3 & | getScale () const |
void | setScale (const Vector3 &scale) |
Set scale. More... | |
const Vector3 & | getPivot () const |
void | setPivot (const Vector3 &pivot) |
Set pivot. More... | |
const int | getRotationCount () const |
Rotation & | getRotation (const int idx) |
Get rotation at given index. More... | |
void | addRotation (const Vector3 &axis, const float angle) |
Add rotation. More... | |
void | removeRotation (const int idx) |
Remove rotation. More... | |
const Vector3 & | getRotationAxis (const int idx) const |
void | setRotationAxis (const int idx, const Vector3 &axis) |
Set rotation axis. More... | |
const float | getRotationAngle (const int idx) const |
void | setRotationAngle (const int idx, const float angle) |
const Quaternion & | getRotationsQuaternion () const |
const Matrix4x4 & | getTransformationsMatrix () const |
virtual void | fromTransformations (const Transformations &transformations) |
Set up this transformations from given transformations. More... | |
virtual void | fromMatrix (const Matrix4x4 &matrix, RotationOrder *rotationOrder) |
Set up this transformations from given matrix and rotation order. More... | |
virtual void | update () |
Computes transformation matrix. More... | |
virtual void | applyParentTransformations (const Transformations &parentTransformations) |
Apply parent transformations. More... | |
virtual void | invert () |
Invert this transformations. More... | |
Protected Member Functions | |
void | updateBoundingBox () |
Update bounding volume. More... | |
Protected Attributes | |
string | id |
Engine * | engine { nullptr } |
Renderer * | renderer { nullptr } |
bool | enabled |
float | lineWidth |
Texture * | texture { nullptr } |
int32_t | textureId { -1 } |
BoundingBox | boundingBox |
BoundingBox | boundingBoxTransformed |
Color4 | effectColorMul |
Color4 | effectColorAdd |
bool | pickable |
bool | contributesShadows |
bool | receivesShadows |
vector< Vector3 > | points |
Color4 | color |
vector< Color4 > | colors |
vector< int32_t > * | vboIds |
Friends | |
class | tdme::engine::subsystems::rendering::EntityRenderer |
LinesObject3DInternal | ( | const string & | id, |
float | lineWidth, | ||
const vector< Vector3 > & | points, | ||
const Color4 & | color, | ||
const vector< Color4 > & | colors = {} , |
||
Texture * | texture = nullptr |
||
) |
Public constructor.
id | id |
lineWidth | line width |
points | points |
color | color |
colors | optional colors |
texture | optional texture |
Definition at line 41 of file LinesObject3DInternal.cpp.
|
virtual |
Destructor.
Definition at line 76 of file LinesObject3DInternal.cpp.
void dispose | ( | ) |
Dispose.
Definition at line 122 of file LinesObject3DInternal.cpp.
|
overridevirtual |
From transformations.
transformations | transformations |
Reimplemented from Transformations.
Definition at line 85 of file LinesObject3DInternal.cpp.
|
inline |
Definition at line 209 of file LinesObject3DInternal.h.
|
inline |
Definition at line 216 of file LinesObject3DInternal.h.
|
inline |
Definition at line 149 of file LinesObject3DInternal.h.
|
inline |
Definition at line 134 of file LinesObject3DInternal.h.
|
inline |
Definition at line 96 of file LinesObject3DInternal.h.
|
inline |
Definition at line 223 of file LinesObject3DInternal.h.
|
inline |
Definition at line 230 of file LinesObject3DInternal.h.
void initialize | ( | ) |
Initialize.
Definition at line 91 of file LinesObject3DInternal.cpp.
|
inline |
Definition at line 179 of file LinesObject3DInternal.h.
|
inline |
Definition at line 119 of file LinesObject3DInternal.h.
|
inline |
Definition at line 164 of file LinesObject3DInternal.h.
|
inline |
Definition at line 194 of file LinesObject3DInternal.h.
|
inline |
Enable/disable contributes shadows.
contributesShadows | contributes shadows |
Definition at line 187 of file LinesObject3DInternal.h.
|
inline |
Set effect color add.
effectColorAdd | effect color add |
Definition at line 157 of file LinesObject3DInternal.h.
|
inline |
Set effect color mul.
effectColorMul | effect color mul |
Definition at line 142 of file LinesObject3DInternal.h.
|
inline |
|
inline |
|
inline |
|
inline |
Enable/disable receives shadows.
receivesShadows | receives shadows |
Definition at line 202 of file LinesObject3DInternal.h.
|
inline |
|
overridevirtual |
Update transformations.
Reimplemented from Transformations.
Definition at line 79 of file LinesObject3DInternal.cpp.
|
inlineprotected |
Update bounding volume.
Definition at line 69 of file LinesObject3DInternal.h.
|
friend |
Definition at line 41 of file LinesObject3DInternal.h.
|
protected |
Definition at line 52 of file LinesObject3DInternal.h.
|
protected |
Definition at line 53 of file LinesObject3DInternal.h.
|
protected |
Definition at line 61 of file LinesObject3DInternal.h.
|
protected |
Definition at line 62 of file LinesObject3DInternal.h.
|
protected |
Definition at line 57 of file LinesObject3DInternal.h.
|
protected |
Definition at line 55 of file LinesObject3DInternal.h.
|
protected |
Definition at line 54 of file LinesObject3DInternal.h.
|
protected |
Definition at line 47 of file LinesObject3DInternal.h.
|
protected |
Definition at line 45 of file LinesObject3DInternal.h.
|
protected |
Definition at line 44 of file LinesObject3DInternal.h.
|
protected |
Definition at line 48 of file LinesObject3DInternal.h.
|
protected |
Definition at line 56 of file LinesObject3DInternal.h.
|
protected |
Definition at line 60 of file LinesObject3DInternal.h.
|
protected |
Definition at line 58 of file LinesObject3DInternal.h.
|
protected |
Definition at line 46 of file LinesObject3DInternal.h.
|
protected |
Definition at line 49 of file LinesObject3DInternal.h.
|
protected |
Definition at line 50 of file LinesObject3DInternal.h.
|
protected |
Definition at line 64 of file LinesObject3DInternal.h.