- Some fixes for SunPro.

This commit is contained in:
Sylvain Pion 2001-12-01 09:45:25 +00:00
parent 7443b894af
commit f387c5ff2b
4 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,6 @@
version 3.10:
- Some fixes for SunPro.
version 3.9:
- little bug fix between documentation and source.

View File

@ -1622,7 +1622,7 @@ Alpha_shape_3<Dt>::get_alpha_shape_facets(std::back_insert_iterator<
//---------------------------------------------------------------------
template < class Dt >
Alpha_shape_3<Dt>::Classification_type
typename Alpha_shape_3<Dt>::Classification_type
Alpha_shape_3<Dt>::classify(const Cell_handle& s,
const int& i,
const Coord_type& alpha) const
@ -1659,7 +1659,7 @@ Alpha_shape_3<Dt>::classify(const Cell_handle& s,
//---------------------------------------------------------------------
template < class Dt >
Alpha_shape_3<Dt>::Classification_type
typename Alpha_shape_3<Dt>::Classification_type
Alpha_shape_3<Dt>::classify(const Cell_handle& s,
const int& i,
const int& j,
@ -1698,7 +1698,7 @@ Alpha_shape_3<Dt>::classify(const Cell_handle& s,
//---------------------------------------------------------------------
template < class Dt >
Alpha_shape_3<Dt>::Classification_type
typename Alpha_shape_3<Dt>::Classification_type
Alpha_shape_3<Dt>::classify(const Vertex_handle& v,
const Coord_type& alpha) const
// Classifies the vertex `v' of the underlying Delaunay
@ -1775,7 +1775,7 @@ void Alpha_shape_3<Dt>::traverse(const Cell_handle& pCell,
//----------------------------------------------------------------------
template <class Dt>
Alpha_shape_3<Dt>::Alpha_iterator
typename Alpha_shape_3<Dt>::Alpha_iterator
Alpha_shape_3<Dt>::find_optimal_alpha(const int& nb_components)
// find the minimum alpha that satisfies the properties
// (1) nb_components solid components
@ -1834,7 +1834,7 @@ Alpha_shape_3<Dt>::find_optimal_alpha(const int& nb_components)
//----------------------------------------------------------------------
template <class Dt>
Alpha_shape_3<Dt>::Coord_type
typename Alpha_shape_3<Dt>::Coord_type
Alpha_shape_3<Dt>::find_alpha_solid() const
// compute the minumum alpha such that all data points
// are either on the boundary or in the interior

View File

@ -69,7 +69,7 @@ public:
typedef Point_3 Point;
typedef typename R::Segment_3 Segment_3;
typedef Compute_squared_radius_circumsphere_3<Coord_type, Point_3>
typedef CGAL::Compute_squared_radius_circumsphere_3<Coord_type, Point_3>
Compute_squared_radius_circumsphere_3;
typedef typename R::Side_of_bounded_sphere_3 Side_of_bounded_sphere_3;

View File

@ -93,9 +93,9 @@ public:
typedef Weighted_point Point_3;
typedef Weighted_point Point;
typedef Compute_squared_radius_orthogonalsphere_3<Coord_type, Point>
typedef CGAL::Compute_squared_radius_orthogonalsphere_3<Coord_type, Point>
Compute_squared_radius_orthogonalsphere_3;
typedef Side_of_bounded_orthogonalsphere_3<Point>
typedef CGAL::Side_of_bounded_orthogonalsphere_3<Point>
Side_of_bounded_orthogonalsphere_3;
//---------------------------------------------------------------------