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) {