cube widget implementation

This commit is contained in:
ozantonkal
2013-07-04 17:59:11 +03:00
parent f07486b563
commit 03cc439b08
3 changed files with 26 additions and 0 deletions

View File

@@ -73,5 +73,11 @@ namespace temp_viz
public:
CylinderWidget(const Point3f& pt_on_axis, const Point3f& axis_direction, double radius, int numsides = 30, const Color &color = Color::white());
};
class CV_EXPORTS CubeWidget : public Widget
{
public:
CubeWidget(const Point3f& pt_min, const Point3f& pt_max, const Color &color = Color::white());
};
}