1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025101: Typo in code documentation of gp_Trsf::SetValues

Documentation of methods Multiply() and Multiplied() corrected in classes gp_(G)Trsf(2d)
This commit is contained in:
abv 2014-09-26 13:57:15 +04:00 committed by bugmaster
parent 476e84b169
commit 008297e1e8
4 changed files with 25 additions and 33 deletions

View File

@ -207,9 +207,8 @@ is
Multiply (me : in out; T : GTrsf) is static;
--- Purpose :
Multiplied (me; T : GTrsf) returns GTrsf is static;
--- Purpose :
-- Computes the transformation composed from T and <me>.
-- In a C++ implementation you can also write Tcomposed = <me> * T.
--- Example :
@ -223,18 +222,16 @@ is
-- XYZ P2(P);
-- T1.Transforms(P2); //using T1 then T2
-- T2.Transforms(P2); // P1 = P2 !!!
-- C++: alias operator *=
Multiplied (me; T : GTrsf) returns GTrsf is static;
--- Purpose :
-- Computes the transformation composed with <me> and T.
-- <me> = T * <me>
---C++: inline
-- C++: alias operator *
Multiply (me : in out; T : GTrsf) is static;
--- Purpose :
-- Computes the transformation composed with <me> and T.
-- <me> = <me> * T
-- C++: alias operator *=
PreMultiply (me : in out; T : GTrsf) is static;
---Purpose:

View File

@ -184,13 +184,6 @@ is
-- Raised an exception if the matrix of the transformation
-- is not inversible.
Multiply (me : in out; T : GTrsf2d) is static;
---C++: alias operator *=
Multiplied (me; T : GTrsf2d) returns GTrsf2d is static;
---C++: inline
---C++: alias operator *
@ -209,11 +202,13 @@ is
-- T1.Transforms(P2); //using T1 then T2
-- T2.Transforms(P2); // P1 = P2 !!!
Multiply (me : in out; T : GTrsf2d) is static;
---C++: alias operator *=
-- Computes the product of the transformation T and this
-- transformation, and assigns the result to this transformation:
-- this = this * T
PreMultiply (me : in out; T : GTrsf2d) is static;
--- Purpose :
-- Computes the product of the transformation T and this
-- transformation, and assigns the result to this transformation:

View File

@ -317,11 +317,7 @@ is
Multiplied (me; T : Trsf) returns Trsf is static;
---C++: inline
---C++: alias operator *
Multiply (me : in out; T : Trsf) is static;
---C++: alias operator *=
--- Purpose :
-- Computes the transformation composed with T and <me>.
-- Computes the transformation composed from T and <me>.
-- In a C++ implementation you can also write Tcomposed = <me> * T.
-- Example :
-- Trsf T1, T2, Tcomp; ...............
@ -332,8 +328,12 @@ is
-- Pnt P2 = P1.Transformed(Tcomp); //using Tcomp
-- Pnt P3 = P1.Transformed(T1); //using T1 then T2
-- P3.Transform(T2); // P3 = P2 !!!
Multiply (me : in out; T : Trsf) is static;
---C++: alias operator *=
--- Purpose :
-- Computes the transformation composed with <me> and T.
-- <me> = T * <me>
-- <me> = <me> * T
PreMultiply (me : in out; T : Trsf) is static;
--- Purpose :

View File

@ -198,10 +198,6 @@ is
Multiplied (me; T : Trsf2d) returns Trsf2d is static;
---C++: inline
---C++: alias operator *
Multiply (me : in out; T : Trsf2d) is static;
---C++: alias operator *=
--- Purpose :
-- Computes the transformation composed from <T> and <me>.
-- In a C++ implementation you can also write Tcomposed = <me> * T.
-- Example :
@ -214,7 +210,11 @@ is
-- Pnt2d P3 = P1.Transformed(T1); //using T1 then T2
-- P3.Transform(T2); // P3 = P2 !!!
Multiply (me : in out; T : Trsf2d) is static;
---C++: alias operator *=
--- Purpose :
-- Computes the transformation composed from <me> and T.
-- <me> = <me> * T
PreMultiply (me : in out; T : Trsf2d) is static;