Added to description of WCube constructor

`WCube` constructor reorders `min_point`, `max_point` parameters when necessary. I added this info to the description.
This commit is contained in:
Paul Jurczak 2020-04-15 16:06:14 -06:00 committed by GitHub
parent 81c2f3d194
commit f64d807863
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -374,8 +374,8 @@ namespace cv
public: public:
/** @brief Constructs a WCube. /** @brief Constructs a WCube.
@param min_point Specifies minimum point of the bounding box. @param min_point Specifies minimum (or maximum) point of the bounding box.
@param max_point Specifies 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 wire_frame If true, cube is represented as wireframe.
@param color Color of the cube. @param color Color of the cube.