TDME2 1.9.121
Public Member Functions | Static Public Member Functions | Static Public Attributes | Private Attributes | List of all members
RotationOrder Class Referencefinal

Represents rotation orders of a model. More...

#include <tdme/engine/model/RotationOrder.h>

Inheritance diagram for RotationOrder:
Inheritance graph
Collaboration diagram for RotationOrder:
Collaboration graph

Public Member Functions

 RotationOrder (const string &name, int ordinal, const Vector3 &axis0, const Vector3 &axis1, const Vector3 &axis2, int32_t axis0VectorIndex, int32_t axis1VectorIndex, int32_t axis2VectorIndex, int32_t axisXIndex, int32_t axisYIndex, int32_t axisZIndex)
 Constructor. More...
 
const Vector3getAxis0 () const
 
const Vector3getAxis1 () const
 
const Vector3getAxis2 () const
 
int32_t getAxis0VectorIndex () const
 
int32_t getAxis1VectorIndex () const
 
int32_t getAxis2VectorIndex () const
 
int32_t getAxisXIndex () const
 
int32_t getAxisYIndex () const
 
int32_t getAxisZIndex () const
 
- Public Member Functions inherited from Enum
 Enum (const string &name, int32_t ordinal)
 Public constructor. More...
 
const string & getName () const
 
int32_t getOrdinal () const
 
bool equals (Enum *enumObject) const
 Compare enum with another enum. More...
 

Static Public Member Functions

static RotationOrdervalueOf (const string &a0)
 

Static Public Attributes

static STATIC_DLL_IMPEXT RotationOrderXYZ = new RotationOrder("XYZ", 0, Vector3(1.0f, 0.0f, 0.0f), Vector3(0.0f, 1.0f, 0.0f), Vector3(0.0f, 0.0f, 1.0f), 0, 1, 2, 0, 1, 2)
 
static STATIC_DLL_IMPEXT RotationOrderYZX = new RotationOrder("YZX", 1, Vector3(0.0f, 1.0f, 0.0f), Vector3(0.0f, 0.0f, 1.0f), Vector3(1.0f, 0.0f, 0.0f), 1, 2, 0, 2, 0, 1)
 
static STATIC_DLL_IMPEXT RotationOrderZYX = new RotationOrder("ZYX", 2, Vector3(0.0f, 0.0f, 1.0f), Vector3(0.0f, 1.0f, 0.0f), Vector3(1.0f, 0.0f, 0.0f), 2, 1, 0, 2, 1, 0)
 

Private Attributes

Vector3 axis0
 
Vector3 axis1
 
Vector3 axis2
 
int32_t axis0VectorIndex
 
int32_t axis1VectorIndex
 
int32_t axis2VectorIndex
 
int32_t axisXIndex
 
int32_t axisYIndex
 
int32_t axisZIndex
 

Detailed Description

Represents rotation orders of a model.

Definition at line 21 of file RotationOrder.h.

Constructor & Destructor Documentation

◆ RotationOrder()

RotationOrder ( const string &  name,
int  ordinal,
const Vector3 axis0,
const Vector3 axis1,
const Vector3 axis2,
int32_t  axis0VectorIndex,
int32_t  axis1VectorIndex,
int32_t  axis2VectorIndex,
int32_t  axisXIndex,
int32_t  axisYIndex,
int32_t  axisZIndex 
)

Constructor.

Parameters
namename
ordinalordinal
axis0axis 0
axis1axis 1
axis2axis 2
axis0VectorIndexaxis 0 vector (data) index
axis1VectorIndexaxis 1 vector (data) index
axis2VectorIndexaxis 2 vector (data) index
axisXIndexaxis X index
axisYIndexaxis Y index
axisZIndexaxis Z index

Definition at line 11 of file RotationOrder.cpp.

Member Function Documentation

◆ getAxis0()

const Vector3 & getAxis0 ( ) const
inline
Returns
axis 0

Definition at line 60 of file RotationOrder.h.

◆ getAxis0VectorIndex()

int32_t getAxis0VectorIndex ( ) const
inline
Returns
axis 0 vector index

Definition at line 81 of file RotationOrder.h.

◆ getAxis1()

const Vector3 & getAxis1 ( ) const
inline
Returns
axis 1

Definition at line 67 of file RotationOrder.h.

◆ getAxis1VectorIndex()

int32_t getAxis1VectorIndex ( ) const
inline
Returns
axis 1 vector index

Definition at line 88 of file RotationOrder.h.

◆ getAxis2()

const Vector3 & getAxis2 ( ) const
inline
Returns
axis 2

Definition at line 74 of file RotationOrder.h.

◆ getAxis2VectorIndex()

int32_t getAxis2VectorIndex ( ) const
inline
Returns
axis 2 vector index

Definition at line 95 of file RotationOrder.h.

◆ getAxisXIndex()

int32_t getAxisXIndex ( ) const
inline
Returns
axis x index

Definition at line 102 of file RotationOrder.h.

◆ getAxisYIndex()

int32_t getAxisYIndex ( ) const
inline
Returns
axis y index

Definition at line 109 of file RotationOrder.h.

◆ getAxisZIndex()

int32_t getAxisZIndex ( ) const
inline
Returns
axis z index

Definition at line 116 of file RotationOrder.h.

◆ valueOf()

RotationOrder * valueOf ( const string &  a0)
static
Returns
rotation order by string

Definition at line 28 of file RotationOrder.cpp.

Member Data Documentation

◆ axis0

Vector3 axis0
private

Definition at line 30 of file RotationOrder.h.

◆ axis0VectorIndex

int32_t axis0VectorIndex
private

Definition at line 33 of file RotationOrder.h.

◆ axis1

Vector3 axis1
private

Definition at line 31 of file RotationOrder.h.

◆ axis1VectorIndex

int32_t axis1VectorIndex
private

Definition at line 34 of file RotationOrder.h.

◆ axis2

Vector3 axis2
private

Definition at line 32 of file RotationOrder.h.

◆ axis2VectorIndex

int32_t axis2VectorIndex
private

Definition at line 35 of file RotationOrder.h.

◆ axisXIndex

int32_t axisXIndex
private

Definition at line 36 of file RotationOrder.h.

◆ axisYIndex

int32_t axisYIndex
private

Definition at line 37 of file RotationOrder.h.

◆ axisZIndex

int32_t axisZIndex
private

Definition at line 38 of file RotationOrder.h.

◆ XYZ

RotationOrder * XYZ = new RotationOrder("XYZ", 0, Vector3(1.0f, 0.0f, 0.0f), Vector3(0.0f, 1.0f, 0.0f), Vector3(0.0f, 0.0f, 1.0f), 0, 1, 2, 0, 1, 2)
static

Definition at line 25 of file RotationOrder.h.

◆ YZX

RotationOrder * YZX = new RotationOrder("YZX", 1, Vector3(0.0f, 1.0f, 0.0f), Vector3(0.0f, 0.0f, 1.0f), Vector3(1.0f, 0.0f, 0.0f), 1, 2, 0, 2, 0, 1)
static

Definition at line 26 of file RotationOrder.h.

◆ ZYX

RotationOrder * ZYX = new RotationOrder("ZYX", 2, Vector3(0.0f, 0.0f, 1.0f), Vector3(0.0f, 1.0f, 0.0f), Vector3(1.0f, 0.0f, 0.0f), 2, 1, 0, 2, 1, 0)
static

Definition at line 27 of file RotationOrder.h.


The documentation for this class was generated from the following files: