From 01086323b068a399e39e09a0ed5df5bab94b6bd7 Mon Sep 17 00:00:00 2001 From: ozantonkal Date: Wed, 12 Jun 2013 09:29:04 +0200 Subject: [PATCH] mistype fix --- modules/viz/src/q/viz3d_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/viz/src/q/viz3d_impl.hpp b/modules/viz/src/q/viz3d_impl.hpp index 616da8a010..bf67701cd0 100644 --- a/modules/viz/src/q/viz3d_impl.hpp +++ b/modules/viz/src/q/viz3d_impl.hpp @@ -493,7 +493,7 @@ struct ApplyAffine const Affine3f& affine_; ApplyAffine(const Affine3f& affine) : affine_(affine) {} - template Point3_<_Tp> operator()(const Point3_<_Tp>& p) { return affine * p; } + template Point3_<_Tp> operator()(const Point3_<_Tp>& p) { return affine_ * p; } template Vec<_Tp, 3> operator()(const Vec<_Tp, 3>& v) {