API Documentation
DecodedNodeData.h
1 // DecodedNodeData.h
3 //
5 
6 namespace nkGraphics
7 {
11  struct DecodedNodeData final
12  {
13  // Attributes
15 
16  // Hierarchy
17  int _parentNodeIndex = -1 ;
18  } ;
19 }
nkGraphics::DecodedNodeData::_transformation
nkMaths::Matrix _transformation
The local node transformation.
Definition: DecodedNodeData.h:14
nkMaths::Matrix
Represents a 4x4 float matrix.
Definition: Matrix.h:14
nkGraphics::DecodedNodeData
Holds data about a decoded node.
Definition: DecodedNodeData.h:12
nkGraphics
Encompasses all API of component NilkinsGraphics.
Definition: BoundingBox.h:7
nkGraphics::DecodedNodeData::_parentNodeIndex
int _parentNodeIndex
The parent node, as the index within the DecodedNodeData set counterpart. No parent is encoded by -1.
Definition: DecodedNodeData.h:17