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_Tuple4.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_Tuple4.h')
-rwxr-xr-xintern/moto/include/MT_Tuple4.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/moto/include/MT_Tuple4.h b/intern/moto/include/MT_Tuple4.h
index eccddb3229a..ce45d64f75b 100755
--- a/intern/moto/include/MT_Tuple4.h
+++ b/intern/moto/include/MT_Tuple4.h
@@ -58,8 +58,8 @@ public:
MT_Tuple4() {}
MT_Tuple4(const float *v) { setValue(v); }
MT_Tuple4(const double *v) { setValue(v); }
- MT_Tuple4(MT_Scalar x, MT_Scalar y, MT_Scalar z, MT_Scalar w) {
- setValue(x, y, z, w);
+ MT_Tuple4(MT_Scalar xx, MT_Scalar yy, MT_Scalar zz, MT_Scalar ww) {
+ setValue(xx, yy, zz, ww);
}
MT_Scalar& operator[](int i) { return m_co[i]; }
@@ -109,8 +109,8 @@ public:
m_co[3] = MT_Scalar(v[3]);
}
- void setValue(MT_Scalar x, MT_Scalar y, MT_Scalar z, MT_Scalar w) {
- m_co[0] = x; m_co[1] = y; m_co[2] = z; m_co[3] = w;
+ void setValue(MT_Scalar xx, MT_Scalar yy, MT_Scalar zz, MT_Scalar ww) {
+ m_co[0] = xx; m_co[1] = yy; m_co[2] = zz; m_co[3] = ww;
}
protected: