cheanges to comply the change of class structure in ball_pivoting.h

This commit is contained in:
ganovelli 2008-09-30 10:09:45 +00:00
parent 9deaad827d
commit f5c74b4b54
1 changed files with 2 additions and 2 deletions

View File

@ -88,12 +88,12 @@ int main(int argc, char **argv)
int t0=clock();
// Initialization
tri::Pivot<MyMesh> pivot(m, radius, clustering);
tri::BallPivoting<MyMesh> pivot(m, radius, clustering);
printf("Ball radius: %f\nClustering points withing %f radii\n", pivot.radius, clustering);
int t1=clock();
// the main processing
pivot.buildMesh(callback);
pivot.BuildMesh(callback);
int t2=clock();