Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPorteries Tristan <republicthunderbolt9@gmail.com>2015-10-31 13:38:06 +0300
committerPorteries Tristan <republicthunderbolt9@gmail.com>2015-10-31 21:45:18 +0300
commit5f903a5eddd7f922a93c79bace3b1572521b8d25 (patch)
tree5e9e622724fabc87b3bb4f71c1c182553550b0cd /intern/moto/include/MT_CmMatrix4x4.h
parentd54e71c8bf1b0ea5651f9b44282f367c5d4e0906 (diff)
BGE: Moto: merge MT_Tuple and MT_Point in MT_Vector.
This commit also replace MT_Tuple and MT_Point in ik solver and BGE with command : find . -type f -exec sed -i 's/MT_Tuple/MT_Vector/g' {} + find . -type f -exec sed -i 's/MT_Point/MT_Vector/g' {} +
Diffstat (limited to 'intern/moto/include/MT_CmMatrix4x4.h')
-rw-r--r--intern/moto/include/MT_CmMatrix4x4.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/intern/moto/include/MT_CmMatrix4x4.h b/intern/moto/include/MT_CmMatrix4x4.h
index 962451cf456..5c89b86d48e 100644
--- a/intern/moto/include/MT_CmMatrix4x4.h
+++ b/intern/moto/include/MT_CmMatrix4x4.h
@@ -46,7 +46,6 @@
#include "MT_Scalar.h"
-class MT_Point3;
class MT_Vector3;
class MT_CmMatrix4x4
@@ -72,7 +71,7 @@ public :
);
MT_CmMatrix4x4(
- const MT_Point3& orig,
+ const MT_Vector3& orig,
const MT_Vector3& dir,
const MT_Vector3 up
);
@@ -113,7 +112,7 @@ public :
GetDir(
) const;
- MT_Point3
+ MT_Vector3
GetPos(
) const;