mirror of https://github.com/CGAL/cgal
Fix a bug in doc. Fix *_circle_traits.h to please gcc-3.x
This commit is contained in:
parent
42659c8bc3
commit
cfc271c122
|
|
@ -59,7 +59,7 @@ concept.}
|
|||
\ccOperations
|
||||
|
||||
\ccTagFullDeclarations
|
||||
\ccMethod{Disk make_disk(Point_2 p);}{method to create a disk from a point.}
|
||||
\ccMethod{Disk make_convex_from_point(Point_2 p);}{method to create a disk from a point.}
|
||||
\ccGlue
|
||||
\ccMethod{bool is_vertex(Disk d);}{returns true if \ccc{d} is a point. }
|
||||
\ccGlue
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ struct Visibility_complex_circle_traits
|
|||
// The chi2 predicate
|
||||
struct Orientation_object {
|
||||
Orientation operator()(const Bitangent_2& a,const Bitangent_2& b) const{
|
||||
typedef Bitangent_2::Disk_handle Disk_handle;
|
||||
typedef typename Bitangent_2::Disk_handle Disk_handle;
|
||||
Disk_handle sa(a.source_object()),ta(a.target_object()),
|
||||
sb(b.source_object()),tb(b.target_object());
|
||||
FT ssa = (a.is_left_xx()) ? 1 : -1;
|
||||
|
|
@ -163,7 +163,7 @@ public:
|
|||
return orientation(a.source() , a.target() ,
|
||||
a.source() + (b.target() - b.source()));
|
||||
*/
|
||||
typedef Bitangent_2::Disk_handle Disk_handle;
|
||||
typedef typename Bitangent_2::Disk_handle Disk_handle;
|
||||
Disk_handle sa(a.source_object()),ta(a.target_object()),
|
||||
sb(b.source_object()),tb(b.target_object());
|
||||
FT ssa = (a.is_left_xx()) ? 1 : -1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue