added import vector
This commit is contained in:
parent
c1551eddfd
commit
6e0b8fe1aa
|
@ -59,6 +59,7 @@ First version.
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <vcg/space/point3.h>
|
#include <vcg/space/point3.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace vcg {
|
namespace vcg {
|
||||||
|
|
||||||
|
@ -98,7 +99,7 @@ protected:
|
||||||
//makes 36 iterations over the data... but get good results.
|
//makes 36 iterations over the data... but get good results.
|
||||||
int CreateTight(int n, const Point3<T> *points,
|
int CreateTight(int n, const Point3<T> *points,
|
||||||
T threshold = 1.01, T speed = 0.6);
|
T threshold = 1.01, T speed = 0.6);
|
||||||
int CreateTight(const std::vector<Point3<T> > & points,
|
int CreateTight(const std::vector<Point3< T> > & points,
|
||||||
T threshold = 1.01, T speed = 0.6);
|
T threshold = 1.01, T speed = 0.6);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue