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:
authorKent Mein <mein@cs.umn.edu>2002-12-14 18:38:45 +0300
committerKent Mein <mein@cs.umn.edu>2002-12-14 18:38:45 +0300
commit4a9377a861f659cf35a1bfa70e628a8277af3246 (patch)
tree800f0981d320ce3de97ccee8874cd8463ad88cad /intern/moto/include/MT_Quaternion.h
parentcfceb16f4aa00afd9ef61baf656d62ea6b8abb00 (diff)
Gilles's patch to get rid of the the same identifier warnings
Kent -- mein@cs.umn.edu
Diffstat (limited to 'intern/moto/include/MT_Quaternion.h')
-rw-r--r--intern/moto/include/MT_Quaternion.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/moto/include/MT_Quaternion.h b/intern/moto/include/MT_Quaternion.h
index 1bc745ebe2d..3d0add4c73e 100644
--- a/intern/moto/include/MT_Quaternion.h
+++ b/intern/moto/include/MT_Quaternion.h
@@ -61,8 +61,8 @@ public:
MT_Quaternion(const MT_Vector4& v) : MT_Vector4(v) {}
MT_Quaternion(const float v[4]) : MT_Vector4(v) {}
MT_Quaternion(const double v[4]) : MT_Vector4(v) {}
- MT_Quaternion(MT_Scalar x, MT_Scalar y, MT_Scalar z, MT_Scalar w) :
- MT_Vector4(x, y, z, w) {}
+ MT_Quaternion(MT_Scalar xx, MT_Scalar yy, MT_Scalar zz, MT_Scalar ww) :
+ MT_Vector4(xx, yy, zz, ww) {}
MT_Quaternion(const MT_Vector3& axis, MT_Scalar angle) {
setRotation(axis, angle);
}