mirror of https://github.com/CGAL/cgal
remove extra `` around .
This commit is contained in:
parent
c4e40f96c3
commit
ef52b587d7
|
|
@ -63,7 +63,7 @@ introduces a variable `c` of type `Circle_2`.
|
|||
It is initialized to the circle with center `center`, squared
|
||||
radius zero and orientation `ori`.
|
||||
\pre `ori` \f$ \neq\f$ `COLLINEAR`.
|
||||
\post `c`.`is_degenerate()` = `true`.
|
||||
\post `c.is_degenerate()` = `true`.
|
||||
*/
|
||||
Circle_2( const Point_2<Kernel> ¢er,
|
||||
const Orientation &ori = COUNTERCLOCKWISE);
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ returns the direction from source to target of `s`.
|
|||
Direction_2<Kernel> direction() const;
|
||||
|
||||
/*!
|
||||
returns the vector `s`.`target()` - `s`.`source()`.
|
||||
returns the vector `s.target()` - `s.source()`.
|
||||
*/
|
||||
Vector_2<Kernel> to_vector() const;
|
||||
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ returns the squared length of `s`.
|
|||
Kernel::FT squared_length() const;
|
||||
|
||||
/*!
|
||||
returns the vector `s`.`target()` - `s`.`source()`.
|
||||
returns the vector `s.target()` - `s`.`source()`.
|
||||
*/
|
||||
Vector_3<Kernel> to_vector() const;
|
||||
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ introduces a variable `c` of type `Sphere_3`.
|
|||
It is initialized to the sphere with center `center`, squared
|
||||
radius zero and orientation `orientation`.
|
||||
\pre `orientation` \f$ \neq\f$ \ref COPLANAR.
|
||||
\post `c`.`is_degenerate()` = `true`.
|
||||
\post `c.is_degenerate()` = `true`.
|
||||
*/
|
||||
Sphere_3( const Point_3<Kernel> & center,
|
||||
const Orientation& orientation = COUNTERCLOCKWISE);
|
||||
|
|
|
|||
Loading…
Reference in New Issue