Changed the namespace POLYLINE to polyline

This commit is contained in:
Dror Atariah 2013-06-19 13:26:05 +02:00
parent 01d588c33c
commit f4ddbee4a4
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@
namespace CGAL {
namespace POLYLINE{
namespace polyline{
/*! \class
@ -601,6 +601,6 @@ namespace CGAL {
return (is);
}
}// namespace POLYLINE
}// namespace polyline
} //namespace CGAL
#endif

View File

@ -107,13 +107,13 @@ public:
* A polyline represents a general continuous piecewise-linear curve, without
* degenerated segments.
*/
typedef POLYLINE::Polyline_2<Segment_traits_2> Curve_2;
typedef polyline::Polyline_2<Segment_traits_2> Curve_2;
/*!
* An x monotone polyline represents a continuous piecewise-linear curve which
* is either strongly x-monotone or vertical. Again, the polyline is without
* degenerated segments.
*/
typedef POLYLINE::X_monotone_polyline_2<Segment_traits_2> X_monotone_curve_2;
typedef polyline::X_monotone_polyline_2<Segment_traits_2> X_monotone_curve_2;
typedef typename Segment_traits_2::Multiplicity Multiplicity;