Commit 01086323 authored by ozantonkal's avatar ozantonkal

mistype fix

parent 1b51ee38
...@@ -493,7 +493,7 @@ struct ApplyAffine ...@@ -493,7 +493,7 @@ struct ApplyAffine
const Affine3f& affine_; const Affine3f& affine_;
ApplyAffine(const Affine3f& affine) : affine_(affine) {} ApplyAffine(const Affine3f& affine) : affine_(affine) {}
template<typename _Tp> Point3_<_Tp> operator()(const Point3_<_Tp>& p) { return affine * p; } template<typename _Tp> Point3_<_Tp> operator()(const Point3_<_Tp>& p) { return affine_ * p; }
template<typename _Tp> Vec<_Tp, 3> operator()(const Vec<_Tp, 3>& v) template<typename _Tp> Vec<_Tp, 3> operator()(const Vec<_Tp, 3>& v)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment