removed Affine3f from coordinate frame constructor

This commit is contained in:
Anatoly Baksheev
2013-07-13 01:49:59 +04:00
parent 328f0e32d8
commit f480eca668
3 changed files with 4 additions and 18 deletions

View File

@@ -103,13 +103,13 @@ namespace temp_viz
class CV_EXPORTS CoordinateSystemWidget : public Widget3D
{
public:
CoordinateSystemWidget(double scale, const Affine3f& affine);
CoordinateSystemWidget(double scale = 1.0);
};
class CV_EXPORTS PolyLineWidget : public Widget3D
{
public:
PolyLineWidget(InputArray _points, const Color &color = Color::white());
PolyLineWidget(InputArray points, const Color &color = Color::white());
private:
struct CopyImpl;