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:
Diffstat (limited to 'intern/moto/include/MT_Point2.h')
-rw-r--r--intern/moto/include/MT_Point2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/moto/include/MT_Point2.h b/intern/moto/include/MT_Point2.h
index c6995f1ab0b..cc6819039fc 100644
--- a/intern/moto/include/MT_Point2.h
+++ b/intern/moto/include/MT_Point2.h
@@ -51,9 +51,9 @@
class MT_Point2 : public MT_Vector2 {
public:
MT_Point2() {}
- MT_Point2(const float *v) : MT_Vector2(v) {}
- MT_Point2(const double *v) : MT_Vector2(v) {}
- MT_Point2(MT_Scalar x, MT_Scalar y) : MT_Vector2(x, y) {}
+ MT_Point2(const float *v2) : MT_Vector2(v2) {}
+ MT_Point2(const double *v2) : MT_Vector2(v2) {}
+ MT_Point2(MT_Scalar x2, MT_Scalar y2) : MT_Vector2(x2, y2) {}
MT_Point2& operator+=(const MT_Vector2& v);
MT_Point2& operator-=(const MT_Vector2& v);