mirror of https://github.com/CGAL/cgal
remove warnings
This commit is contained in:
parent
6c4d0a65ee
commit
6fc84fb659
|
|
@ -48,7 +48,7 @@ int main(void)
|
|||
|
||||
for (int i = 0; i < iter_number; ++i)
|
||||
{
|
||||
double error =
|
||||
/* double error = */
|
||||
CGAL::bilateral_smooth_point_set <CGAL::Parallel_tag>(
|
||||
points.begin(),
|
||||
points.end(),
|
||||
|
|
|
|||
|
|
@ -77,8 +77,8 @@ public:
|
|||
|
||||
public:
|
||||
Point pt;
|
||||
Vector normal;
|
||||
unsigned int index;
|
||||
Vector normal;
|
||||
std::vector<unsigned int> neighbors;
|
||||
std::vector<unsigned int> original_neighbors;//it's not necessary
|
||||
};
|
||||
|
|
@ -184,7 +184,6 @@ void Rich_grid<Kernel>::init(std::vector<Rich_point<Kernel> > &vert,
|
|||
CGAL::Bbox_3 bbox,
|
||||
const typename Kernel::FT _radius)
|
||||
{
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
typedef typename Kernel::FT FT;
|
||||
|
||||
rich_points.resize(vert.size());
|
||||
|
|
@ -259,9 +258,6 @@ void Rich_grid<Kernel>::travel_itself(
|
|||
iterator startb, iterator endb, FT radius)
|
||||
)
|
||||
{
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
typedef typename Kernel::FT FT;
|
||||
|
||||
static int corner[8*3] = { 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1,
|
||||
0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1 };
|
||||
|
||||
|
|
@ -302,9 +298,6 @@ void Rich_grid<Kernel>::travel_others(
|
|||
const typename Kernel::FT radius)
|
||||
)
|
||||
{
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
typedef typename Kernel::FT FT;
|
||||
|
||||
static int corner[8*3] = { 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1,
|
||||
0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1 };
|
||||
|
||||
|
|
@ -463,7 +456,6 @@ void compute_ball_neighbors_one_self(
|
|||
CGAL::Bbox_3 bbox, ///< bounding box
|
||||
const typename Kernel::FT radius)
|
||||
{
|
||||
typedef typename Kernel::FT FT;
|
||||
CGAL_point_set_processing_precondition(radius > 0);
|
||||
|
||||
for (unsigned int i = 0; i < points.size(); ++i)
|
||||
|
|
|
|||
|
|
@ -389,7 +389,6 @@ bilateral_smooth_point_set(
|
|||
typedef bilateral_smooth_point_set_internal::Kd_tree_traits<Kernel> Tree_traits;
|
||||
typedef CGAL::Orthogonal_k_neighbor_search<Tree_traits> Neighbor_search;
|
||||
typedef typename Neighbor_search::Tree Tree;
|
||||
typedef typename Neighbor_search::iterator Search_iterator;
|
||||
|
||||
// copy points and normals
|
||||
Pwns pwns;
|
||||
|
|
|
|||
|
|
@ -140,7 +140,6 @@ update_new_point(
|
|||
)
|
||||
{
|
||||
// basic geometric types
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
typedef typename Kernel::Vector_3 Vector;
|
||||
typedef typename Kernel::FT FT;
|
||||
typedef typename rich_grid_internal::Rich_point<Kernel> Rich_point;
|
||||
|
|
@ -334,8 +333,6 @@ edge_aware_upsample_point_set(
|
|||
typedef typename Kernel::Vector_3 Vector;
|
||||
typedef typename Kernel::FT FT;
|
||||
typedef typename rich_grid_internal::Rich_point<Kernel> Rich_point;
|
||||
typedef std::pair<Point, Vector> Point_with_normal;
|
||||
|
||||
|
||||
// preconditions
|
||||
CGAL_point_set_processing_precondition(first != beyond);
|
||||
|
|
|
|||
|
|
@ -240,7 +240,6 @@ compute_density_weight_for_original_point(
|
|||
|
||||
// basic geometric types
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
typedef typename Kernel::Vector_3 Vector;
|
||||
typedef typename Kernel::FT FT;
|
||||
|
||||
//types for range search
|
||||
|
|
@ -296,7 +295,6 @@ compute_density_weight_for_sample_point(
|
|||
{
|
||||
// basic geometric types
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
typedef typename Kernel::Vector_3 Vector;
|
||||
typedef typename Kernel::FT FT;
|
||||
|
||||
//types for range search
|
||||
|
|
@ -397,7 +395,6 @@ wlop_simplify_and_regularize_point_set(
|
|||
{
|
||||
// basic geometric types
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
typedef typename Kernel::Vector_3 Vector;
|
||||
typedef typename Kernel::FT FT;
|
||||
|
||||
// types for K nearest neighbors search structure
|
||||
|
|
@ -405,7 +402,6 @@ wlop_simplify_and_regularize_point_set(
|
|||
typedef simplify_and_regularize_internal::Kd_tree_traits<Kernel> Tree_traits;
|
||||
typedef CGAL::Orthogonal_k_neighbor_search<Tree_traits> Neighbor_search;
|
||||
typedef typename Neighbor_search::Tree Kd_Tree;
|
||||
typedef typename Neighbor_search::iterator Search_iterator;
|
||||
|
||||
// precondition: at least one element in the container.
|
||||
// to fix: should have at least three distinct points
|
||||
|
|
|
|||
Loading…
Reference in New Issue