mirror of https://github.com/CGAL/cgal
cleanup
This commit is contained in:
parent
9b24ef58fc
commit
d2e0c7ea61
|
|
@ -214,12 +214,12 @@ public:
|
|||
template < class Gt, class FS, class Sh, class wA, class Ct >
|
||||
Scale_space_surface_reconstruction_3<Gt,FS,Sh,wA,Ct>::
|
||||
Scale_space_surface_reconstruction_3( unsigned int neighbors, unsigned int samples )
|
||||
: _mean_neighbors(neighbors), _samples(samples), _squared_radius(-1), _shape(0) {}
|
||||
: _mean_neighbors(neighbors), _samples(samples), _squared_radius(-1), _shape(0) {}
|
||||
|
||||
template < class Gt, class FS, class Sh, class wA, class Ct >
|
||||
Scale_space_surface_reconstruction_3<Gt,FS,Sh,wA,Ct>::
|
||||
Scale_space_surface_reconstruction_3( FT sq_radius )
|
||||
: _mean_neighbors(0), _samples(0), _squared_radius(sq_radius), _shape(0) {
|
||||
: _mean_neighbors(0), _samples(0), _squared_radius(sq_radius), _shape(0) {
|
||||
CGAL_precondition( sq_radius >= 0 );
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@
|
|||
#include <CGAL/Orthogonal_incremental_neighbor_search.h>
|
||||
#include <CGAL/Orthogonal_k_neighbor_search.h>
|
||||
#include <CGAL/Fuzzy_sphere.h>
|
||||
#include <CGAL/Fuzzy_sphere.h>
|
||||
#include <CGAL/Random.h>
|
||||
|
||||
#include <CGAL/Scale_space_reconstruction_3/Shape_construction_3.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue