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:
authorTon Roosendaal <ton@blender.org>2009-10-20 20:02:41 +0400
committerTon Roosendaal <ton@blender.org>2009-10-20 20:02:41 +0400
commit5d0f5d210a5f7e6e0d10153b573468f39d8eae69 (patch)
treee39c3299fe749ef7a6025d012ac71346335ed5c2 /intern/itasc/kdl/framevel.hpp
parentb2d771a4383c7062fb1fb0d934f8aec80af04ff6 (diff)
Fix in KDL for gcc 3.3 compilation
Thanks to Benoit Bolsee and Alexander Clausen for help!
Diffstat (limited to 'intern/itasc/kdl/framevel.hpp')
-rw-r--r--intern/itasc/kdl/framevel.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/intern/itasc/kdl/framevel.hpp b/intern/itasc/kdl/framevel.hpp
index 21a7844f522..b70182bccde 100644
--- a/intern/itasc/kdl/framevel.hpp
+++ b/intern/itasc/kdl/framevel.hpp
@@ -133,8 +133,8 @@ public:
Vector w; // rotation vector
public:
RotationVel():R(),w() {}
- explicit RotationVel(const Rotation& _R):R(_R),w(Vector::Zero()){}
- RotationVel(const Rotation& _R,const Vector& _w):R(_R),w(_w){}
+ explicit RotationVel(const Rotation& R_):R(R_),w(Vector::Zero()){}
+ RotationVel(const Rotation& R_,const Vector& _w):R(R_),w(_w){}
Rotation value() const { return R;}
@@ -194,11 +194,11 @@ public:
public:
FrameVel(){}
- explicit FrameVel(const Frame& _T):
- M(_T.M),p(_T.p) {}
+ explicit FrameVel(const Frame& T_):
+ M(T_.M),p(T_.p) {}
- FrameVel(const Frame& _T,const Twist& _t):
- M(_T.M,_t.rot),p(_T.p,_t.vel) {}
+ FrameVel(const Frame& T_,const Twist& _t):
+ M(T_.M,_t.rot),p(T_.p,_t.vel) {}
FrameVel(const RotationVel& _M,const VectorVel& _p):
M(_M),p(_p) {}