mirror of https://github.com/CGAL/cgal
defining intersection and do_intersection subgroups in one place
This commit is contained in:
parent
edecd83f58
commit
1debeb5cde
|
|
@ -1692,6 +1692,12 @@ const CGAL::Vector_3<Kernel>& w);
|
|||
|
||||
/// \defgroup do_intersect CGAL::do_intersect()
|
||||
/// \ingroup kernel_global_function
|
||||
/// \defgroup do_intersect_linear CGAL::do_intersect() (2D/3D Linear Kernel)
|
||||
/// \ingroup do_intersect
|
||||
/// \defgroup do_intersect_circular CGAL::do_intersect() (2D Circular Kernel)
|
||||
/// \ingroup do_intersect
|
||||
/// \defgroup do_intersect_spherical CGAL::do_intersect() (3D Spherical Kernel)
|
||||
/// \ingroup do_intersect
|
||||
|
||||
/// \defgroup equidistant_line CGAL::equidistant_line()
|
||||
/// \ingroup kernel_global_function
|
||||
|
|
@ -1942,6 +1948,12 @@ const CGAL::Point_3<Kernel>& t);
|
|||
|
||||
/// \defgroup intersection CGAL::intersection()
|
||||
/// \ingroup kernel_global_function
|
||||
/// \defgroup intersection_linear CGAL::intersection() (2D/3D Linear Kernel)
|
||||
/// \ingroup intersection
|
||||
/// \defgroup intersection_circular CGAL::intersection() (2D Circular Kernel)
|
||||
/// \ingroup intersection
|
||||
/// \defgroup intersection_spherical CGAL::intersection() (3D Spherical Kernel)
|
||||
/// \ingroup intersection
|
||||
|
||||
/// \defgroup left_turn CGAL::left_turn()
|
||||
/// \ingroup kernel_global_function
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ bool do_intersect(Type1<Kernel> obj1, Type2<Kernel> obj2);
|
|||
|
||||
|
||||
/*!
|
||||
\addtogroup do_intersect_circular CGAL::do_intersect() (2D Circular Kernel)
|
||||
\addtogroup do_intersect_circular
|
||||
\ingroup do_intersect
|
||||
|
||||
\code
|
||||
|
|
@ -112,7 +112,7 @@ bool do_intersect(Type1<CircularKernel> obj1, Type2<CircularKernel> obj2);
|
|||
|
||||
|
||||
/*!
|
||||
\addtogroup do_intersect_spherical CGAL::do_intersect() (3D Spherical Kernel)
|
||||
\addtogroup do_intersect_spherical
|
||||
\ingroup do_intersect
|
||||
|
||||
\code
|
||||
|
|
@ -178,7 +178,7 @@ function are available.
|
|||
|
||||
|
||||
/*!
|
||||
\addtogroup intersection_linear CGAL::intersection() (2D/3D Linear Kernel)
|
||||
\addtogroup intersection_linear
|
||||
\ingroup intersection
|
||||
|
||||
\code
|
||||
|
|
@ -421,7 +421,7 @@ Object intersection(const Plane_3<Kernel>& pl1,
|
|||
/// @}
|
||||
|
||||
/*!
|
||||
\addtogroup intersection_circular CGAL::intersection() (2D Circular Kernel)
|
||||
\addtogroup intersection_circular
|
||||
\ingroup intersection
|
||||
|
||||
\code
|
||||
|
|
@ -480,7 +480,7 @@ intersection(const Type1 &obj1, const Type2 &obj2,
|
|||
/// @}
|
||||
|
||||
/*!
|
||||
\addtogroup intersection_spherical CGAL::intersection() (3D Spherical Kernel)
|
||||
\addtogroup intersection_spherical
|
||||
\ingroup intersection
|
||||
|
||||
\code
|
||||
|
|
|
|||
Loading…
Reference in New Issue