- fix a few typos

This commit is contained in:
Sylvain Pion 2002-10-06 13:07:18 +00:00
parent 4ad113bbe8
commit 812aba08dc
15 changed files with 17 additions and 24 deletions

View File

@ -2,6 +2,7 @@
2.55 (??? ??? 2002)
- documented that all kernel objects should be default constructable
- added weighted point for 2D and 3D
- fix a few typos
2.54 (8 Aug 2002)
- replaced LEFTTURN, RIGHTTURN, etc. by LEFT_TURN, RIGHT_TURN, etc.

View File

@ -6,7 +6,7 @@ A model for this must provide:
\ccMemberFunction{
template <class T>
bool operator()(T& t, const Kernel::Object_2&o);}
{assigns \ccStyle{o} to \ccStyle{c} if \ccStyle{o}
{assigns \ccStyle{o} to \ccStyle{t} if \ccStyle{o}
was constructed from an object of type \ccStyle{T}.
Returns \ccc{true}, if the assignment was possible.}

View File

@ -6,7 +6,7 @@ A model for this must provide:
\ccMemberFunction{
template <class T>
bool operator()(T& t, const Kernel::Object_3&o);}
{assigns \ccStyle{o} to \ccStyle{c} if \ccStyle{o}
{assigns \ccStyle{o} to \ccStyle{t} if \ccStyle{o}
was constructed from an object of type \ccStyle{T}.
Returns \ccc{true}, if the assignment was possible.}

View File

@ -3,7 +3,7 @@ A model for this must provide:
\ccCreationVariable{fo}
\ccMemberFunction{Kernel::Vector_3 operator()(const Kernel::Vector32& v);}
\ccMemberFunction{Kernel::Vector_3 operator()(const Kernel::Vector_3& v);}
{returns the vector \ccc{-v}.}
\ccRefines

View File

@ -5,13 +5,11 @@ A model for this must provide:
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_2 operator()(const Kernel::Vector_2 &v,
const Kernel::RT& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_2 operator()(const Kernel::Vector_2 &v,
const Quotient<Kernel::RT>& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}

View File

@ -5,13 +5,11 @@ A model for this must provide:
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_3 operator()(const Kernel::Vector_3 &v,
const Kernel::RT& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_3 operator()(const Kernel::Vector_3 &v,
const Quotient<Kernel::RT>& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}

View File

@ -31,7 +31,7 @@ A model for this must provide:
\ccPrecond \ccc{p}, \ccc{q}, \ccc{r}, and \ccc{s} are not collinear.}
\ccMemberFunction{ Kernel::Sphere_3 operator()(const Point_3 & p,
\ccMemberFunction{ Kernel::Sphere_3 operator()(const Kernel::Point_3 & p,
const Kernel::Point_3 & q,
const Kernel::Point_3 & r,
const Orientation& o = COUNTERCLOCKWISE);}

View File

@ -3,10 +3,10 @@ A model for this must provide:
\ccCreationVariable{fo}
\ccMemberFunction{bool operator()(const Kernel::Point_2&p,
const Kernel::Point_2&q,
const Kernel::Point_2&r,
const Kernel::Point_2&s);}
\ccMemberFunction{bool operator()(const Kernel::Point_3&p,
const Kernel::Point_3&q,
const Kernel::Point_3&r,
const Kernel::Point_3&s);}
{returns \ccStyle{true}, if $p$, $q$, $r$, and $s$ are coplanar.}
\ccRefines

View File

@ -6,7 +6,7 @@ A model for this must provide:
\ccMemberFunction{
template <class T>
bool operator()(T& t, const Kernel::Object_2&o);}
{assigns \ccStyle{o} to \ccStyle{c} if \ccStyle{o}
{assigns \ccStyle{o} to \ccStyle{t} if \ccStyle{o}
was constructed from an object of type \ccStyle{T}.
Returns \ccc{true}, if the assignment was possible.}

View File

@ -6,7 +6,7 @@ A model for this must provide:
\ccMemberFunction{
template <class T>
bool operator()(T& t, const Kernel::Object_3&o);}
{assigns \ccStyle{o} to \ccStyle{c} if \ccStyle{o}
{assigns \ccStyle{o} to \ccStyle{t} if \ccStyle{o}
was constructed from an object of type \ccStyle{T}.
Returns \ccc{true}, if the assignment was possible.}

View File

@ -3,7 +3,7 @@ A model for this must provide:
\ccCreationVariable{fo}
\ccMemberFunction{Kernel::Vector_3 operator()(const Kernel::Vector32& v);}
\ccMemberFunction{Kernel::Vector_3 operator()(const Kernel::Vector_3& v);}
{returns the vector \ccc{-v}.}
\ccRefines

View File

@ -5,13 +5,11 @@ A model for this must provide:
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_2 operator()(const Kernel::Vector_2 &v,
const Kernel::RT& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_2 operator()(const Kernel::Vector_2 &v,
const Quotient<Kernel::RT>& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}

View File

@ -5,13 +5,11 @@ A model for this must provide:
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_3 operator()(const Kernel::Vector_3 &v,
const Kernel::RT& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}
\ccMemberFunction{
template <class Kernel::RT>
Kernel::Vector_3 operator()(const Kernel::Vector_3 &v,
const Quotient<Kernel::RT>& scale);}
{produces the vector \ccc{v} scaled by a factor \ccc{scale}.}

View File

@ -31,7 +31,7 @@ A model for this must provide:
\ccPrecond \ccc{p}, \ccc{q}, \ccc{r}, and \ccc{s} are not collinear.}
\ccMemberFunction{ Kernel::Sphere_3 operator()(const Point_3 & p,
\ccMemberFunction{ Kernel::Sphere_3 operator()(const Kernel::Point_3 & p,
const Kernel::Point_3 & q,
const Kernel::Point_3 & r,
const Orientation& o = COUNTERCLOCKWISE);}

View File

@ -3,10 +3,10 @@ A model for this must provide:
\ccCreationVariable{fo}
\ccMemberFunction{bool operator()(const Kernel::Point_2&p,
const Kernel::Point_2&q,
const Kernel::Point_2&r,
const Kernel::Point_2&s);}
\ccMemberFunction{bool operator()(const Kernel::Point_3&p,
const Kernel::Point_3&q,
const Kernel::Point_3&r,
const Kernel::Point_3&s);}
{returns \ccStyle{true}, if $p$, $q$, $r$, and $s$ are coplanar.}
\ccRefines