From f64d8078635a44b5bb78c097598304c5db8ced50 Mon Sep 17 00:00:00 2001 From: Paul Jurczak Date: Wed, 15 Apr 2020 16:06:14 -0600 Subject: [PATCH] Added to description of WCube constructor `WCube` constructor reorders `min_point`, `max_point` parameters when necessary. I added this info to the description. --- modules/viz/include/opencv2/viz/widgets.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/viz/include/opencv2/viz/widgets.hpp b/modules/viz/include/opencv2/viz/widgets.hpp index 1b73110b58..72e3986dfc 100644 --- a/modules/viz/include/opencv2/viz/widgets.hpp +++ b/modules/viz/include/opencv2/viz/widgets.hpp @@ -374,8 +374,8 @@ namespace cv public: /** @brief Constructs a WCube. - @param min_point Specifies minimum point of the bounding box. - @param max_point Specifies maximum point of the bounding box. + @param min_point Specifies minimum (or maximum) point of the bounding box. + @param max_point Specifies maximum (or minimum) point of the bounding box, opposite to the first parameter. @param wire_frame If true, cube is represented as wireframe. @param color Color of the cube.