From 158a455f10cea5435c7bee58c4912d79098de76f Mon Sep 17 00:00:00 2001 From: Monique Teillaud Date: Wed, 4 Jun 2008 06:20:52 +0000 Subject: [PATCH] cosmetic: names of arguments changed to avoid spurious links --- Kernel_23/doc_tex/Kernel_23_ref/Circle_3.tex | 16 ++++++++-------- .../Kernel_23_ref/Kernel_ConstructCircle_3.tex | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Kernel_23/doc_tex/Kernel_23_ref/Circle_3.tex b/Kernel_23/doc_tex/Kernel_23_ref/Circle_3.tex index 9df25f75bfe..7c74c5914c2 100644 --- a/Kernel_23/doc_tex/Kernel_23_ref/Circle_3.tex +++ b/Kernel_23/doc_tex/Kernel_23_ref/Circle_3.tex @@ -16,22 +16,22 @@ circle can be degenerate, i.e.\ the squared radius may be zero. \ccClassTemplateName.} \ccConstructor{Circle_3(Point_3 const& center, - Kernel::FT const& squared_radius, + Kernel::FT const& sq_r, Plane_3 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 const& center, - Kernel::FT const& squared_radius, - Vector_3 const& normal);} + Kernel::FT const& sq_r, + Vector_3 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 const& sphere1, Sphere_3 const& sphere2);} diff --git a/Kernel_23/doc_tex/Kernel_23_ref/Kernel_ConstructCircle_3.tex b/Kernel_23/doc_tex/Kernel_23_ref/Kernel_ConstructCircle_3.tex index cbb9045520f..f40b71f99a7 100644 --- a/Kernel_23/doc_tex/Kernel_23_ref/Kernel_ConstructCircle_3.tex +++ b/Kernel_23/doc_tex/Kernel_23_ref/Kernel_ConstructCircle_3.tex @@ -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()