From f5c74b4b54a67db6d06899bdb536e61bfa00c847 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Tue, 30 Sep 2008 10:09:45 +0000 Subject: [PATCH] cheanges to comply the change of class structure in ball_pivoting.h --- apps/sample/trimesh_ball_pivoting/trimesh_ball_pivoting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sample/trimesh_ball_pivoting/trimesh_ball_pivoting.cpp b/apps/sample/trimesh_ball_pivoting/trimesh_ball_pivoting.cpp index 9d9ced36..9ece3e85 100644 --- a/apps/sample/trimesh_ball_pivoting/trimesh_ball_pivoting.cpp +++ b/apps/sample/trimesh_ball_pivoting/trimesh_ball_pivoting.cpp @@ -88,12 +88,12 @@ int main(int argc, char **argv) int t0=clock(); // Initialization - tri::Pivot pivot(m, radius, clustering); + tri::BallPivoting 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();