cylinder widget implementation

This commit is contained in:
ozantonkal
2013-07-04 17:44:41 +03:00
parent f97c3c8b06
commit f07486b563
3 changed files with 35 additions and 2 deletions

View File

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