remove extra `` around .

This commit is contained in:
Sébastien Loriot 2012-10-11 22:44:34 +00:00
parent c4e40f96c3
commit ef52b587d7
4 changed files with 4 additions and 4 deletions

View File

@ -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> &center,
const Orientation &ori = COUNTERCLOCKWISE);

View File

@ -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;

View File

@ -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;

View File

@ -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);