cosmetic: names of arguments changed to avoid spurious links

This commit is contained in:
Monique Teillaud 2008-06-04 06:20:52 +00:00
parent 8feb0edb88
commit 158a455f10
2 changed files with 16 additions and 16 deletions

View File

@ -16,22 +16,22 @@ circle can be degenerate, i.e.\ the squared radius may be zero.
\ccClassTemplateName.}
\ccConstructor{Circle_3(Point_3<Kernel> const& center,
Kernel::FT const& squared_radius,
Kernel::FT const& sq_r,
Plane_3<Kernel> const& plane);}
{introduces a variable \ccVar\ of type \ccClassTemplateName.
It is initialized to the circle of center \ccc{center} and
squared radius \ccc{squared_radius} in plane \ccc{plane}.
squared radius \ccc{sq_r} in plane \ccc{plane}.
\ccPrecond{\ccc{center} lies in \ccc{plane} and
\ccc{squared_radius} $\geq$ 0.}}
\ccc{sq_r} $\geq$ 0.}}
\ccConstructor{Circle_3(Point_3<Kernel> const& center,
Kernel::FT const& squared_radius,
Vector_3<Kernel> const& normal);}
Kernel::FT const& sq_r,
Vector_3<Kernel> const& n);}
{introduces a variable \ccVar\ of type \ccClassTemplateName.
It is initialized to the circle of center \ccc{center} and
squared radius \ccc{squared_radius} in a plane normal to
the vector \ccc{normal}.
\ccPrecond{\ccc{squared_radius} $\geq$ 0.}}
squared radius \ccc{sq_r} in a plane normal to
the vector \ccc{n}.
\ccPrecond{\ccc{sq_r} $\geq$ 0.}}
\ccConstructor{Circle_3(Sphere_3<Kernel> const& sphere1,
Sphere_3<Kernel> const& sphere2);}

View File

@ -11,23 +11,23 @@ A model for this must provide:
\ccMemberFunction{Kernel::Circle_3 operator()
( Kernel::Point_3 const& center,
Kernel::FT const& squared_radius,
Kernel::FT const& sq_r,
Kernel::Plane_3 const& plane);}
{introduces a variable of type \ccc{Kernel::Circle_3}.
It is initialized to the circle with center \ccc{center},
and squared radius \ccc{squared_radius} in the plane \ccc{plane}.
and squared radius \ccc{sq_r} in the plane \ccc{plane}.
\ccPrecond{\ccc{center} lies in \ccc{plane} and
\ccc{squared_radius} $\geq$ 0.}}
\ccc{sq_r} $\geq$ 0.}}
\ccMemberFunction{Kernel::Circle_3 operator()
( Kernel::Point_3 const& center,
Kernel::FT const& squared_radius,
Kernel::Vector_3 const& normal);}
Kernel::FT const& sq_r,
Kernel::Vector_3 const& n);}
{introduces a variable of type \ccc{Kernel::Circle_3}.
It is initialized to the circle with center \ccc{center},
and squared radius \ccc{squared_radius} in the plane
containing \ccc{center} and normal to \ccc{normal}.
\ccPrecond{\ccc{squared_radius} $\geq$ 0.}}
and squared radius \ccc{sq_r} in the plane
containing \ccc{center} and normal to \ccc{n}.
\ccPrecond{\ccc{sq_r} $\geq$ 0.}}
\ccMemberFunction{Kernel::Circle_3 operator()