plane widget implementation

This commit is contained in:
ozantonkal
2013-07-04 16:15:20 +03:00
parent ba89a6a34a
commit 3d3e3fd470
3 changed files with 52 additions and 1 deletions

View File

@@ -42,6 +42,13 @@ namespace temp_viz
void setLineWidth(float line_width);
float getLineWidth();
};
class CV_EXPORTS PlaneWidget : public Widget
{
public:
PlaneWidget(const Vec4f& coefs, const Color &color = Color::white());
PlaneWidget(const Vec4f& coefs, const Point3f& pt, const Color &color = Color::white());
};
}