1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

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
+2 -2
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;