Added Node::SetTransformMatrix

Former-commit-id: ca5c457f48b12b5603ee6a7629159a74388a9b42
This commit is contained in:
Lynix
2013-06-09 16:16:42 +02:00
parent 3df00608b5
commit 40bf1723f5
2 changed files with 14 additions and 3 deletions

View File

@@ -70,6 +70,7 @@ class NAZARA_API NzNode
void SetScale(const NzVector3f& scale, nzCoordSys coordSys = nzCoordSys_Local);
void SetScale(float scale, nzCoordSys coordSys = nzCoordSys_Local);
void SetScale(float scaleX, float scaleY, float scaleZ, nzCoordSys coordSys = nzCoordSys_Local);
void SetTransformMatrix(const NzMatrix4f& matrix);
// Local -> global
NzVector3f ToGlobalPosition(const NzVector3f& localPosition) const;