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:
parent
476e84b169
commit
008297e1e8
@ -207,9 +207,8 @@ is
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
Multiply (me : in out; T : GTrsf) is static;
|
Multiplied (me; T : GTrsf) returns GTrsf is static;
|
||||||
|
--- Purpose :
|
||||||
--- Purpose :
|
|
||||||
-- Computes the transformation composed from T and <me>.
|
-- Computes the transformation composed from T and <me>.
|
||||||
-- In a C++ implementation you can also write Tcomposed = <me> * T.
|
-- In a C++ implementation you can also write Tcomposed = <me> * T.
|
||||||
--- Example :
|
--- Example :
|
||||||
@ -223,18 +222,16 @@ is
|
|||||||
-- XYZ P2(P);
|
-- XYZ P2(P);
|
||||||
-- T1.Transforms(P2); //using T1 then T2
|
-- T1.Transforms(P2); //using T1 then T2
|
||||||
-- T2.Transforms(P2); // P1 = P2 !!!
|
-- 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++: inline
|
||||||
-- C++: alias operator *
|
-- 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;
|
PreMultiply (me : in out; T : GTrsf) is static;
|
||||||
|
|
||||||
---Purpose:
|
---Purpose:
|
||||||
|
@ -184,13 +184,6 @@ is
|
|||||||
-- Raised an exception if the matrix of the transformation
|
-- Raised an exception if the matrix of the transformation
|
||||||
-- is not inversible.
|
-- is not inversible.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Multiply (me : in out; T : GTrsf2d) is static;
|
|
||||||
---C++: alias operator *=
|
|
||||||
|
|
||||||
Multiplied (me; T : GTrsf2d) returns GTrsf2d is static;
|
Multiplied (me; T : GTrsf2d) returns GTrsf2d is static;
|
||||||
---C++: inline
|
---C++: inline
|
||||||
---C++: alias operator *
|
---C++: alias operator *
|
||||||
@ -209,11 +202,13 @@ is
|
|||||||
-- T1.Transforms(P2); //using T1 then T2
|
-- T1.Transforms(P2); //using T1 then T2
|
||||||
-- T2.Transforms(P2); // P1 = P2 !!!
|
-- 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;
|
PreMultiply (me : in out; T : GTrsf2d) is static;
|
||||||
|
|
||||||
|
|
||||||
--- Purpose :
|
--- Purpose :
|
||||||
-- Computes the product of the transformation T and this
|
-- Computes the product of the transformation T and this
|
||||||
-- transformation, and assigns the result to this transformation:
|
-- transformation, and assigns the result to this transformation:
|
||||||
|
@ -317,11 +317,7 @@ is
|
|||||||
Multiplied (me; T : Trsf) returns Trsf is static;
|
Multiplied (me; T : Trsf) returns Trsf is static;
|
||||||
---C++: inline
|
---C++: inline
|
||||||
---C++: alias operator *
|
---C++: alias operator *
|
||||||
|
-- Computes the transformation composed from T and <me>.
|
||||||
Multiply (me : in out; T : Trsf) is static;
|
|
||||||
---C++: alias operator *=
|
|
||||||
--- Purpose :
|
|
||||||
-- Computes the transformation composed with T and <me>.
|
|
||||||
-- In a C++ implementation you can also write Tcomposed = <me> * T.
|
-- In a C++ implementation you can also write Tcomposed = <me> * T.
|
||||||
-- Example :
|
-- Example :
|
||||||
-- Trsf T1, T2, Tcomp; ...............
|
-- Trsf T1, T2, Tcomp; ...............
|
||||||
@ -332,8 +328,12 @@ is
|
|||||||
-- Pnt P2 = P1.Transformed(Tcomp); //using Tcomp
|
-- Pnt P2 = P1.Transformed(Tcomp); //using Tcomp
|
||||||
-- Pnt P3 = P1.Transformed(T1); //using T1 then T2
|
-- Pnt P3 = P1.Transformed(T1); //using T1 then T2
|
||||||
-- P3.Transform(T2); // P3 = P2 !!!
|
-- 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.
|
-- Computes the transformation composed with <me> and T.
|
||||||
-- <me> = T * <me>
|
-- <me> = <me> * T
|
||||||
|
|
||||||
PreMultiply (me : in out; T : Trsf) is static;
|
PreMultiply (me : in out; T : Trsf) is static;
|
||||||
--- Purpose :
|
--- Purpose :
|
||||||
|
@ -198,10 +198,6 @@ is
|
|||||||
Multiplied (me; T : Trsf2d) returns Trsf2d is static;
|
Multiplied (me; T : Trsf2d) returns Trsf2d is static;
|
||||||
---C++: inline
|
---C++: inline
|
||||||
---C++: alias operator *
|
---C++: alias operator *
|
||||||
|
|
||||||
Multiply (me : in out; T : Trsf2d) is static;
|
|
||||||
---C++: alias operator *=
|
|
||||||
--- Purpose :
|
|
||||||
-- Computes the transformation composed from <T> and <me>.
|
-- Computes the transformation composed from <T> and <me>.
|
||||||
-- In a C++ implementation you can also write Tcomposed = <me> * T.
|
-- In a C++ implementation you can also write Tcomposed = <me> * T.
|
||||||
-- Example :
|
-- Example :
|
||||||
@ -214,7 +210,11 @@ is
|
|||||||
-- Pnt2d P3 = P1.Transformed(T1); //using T1 then T2
|
-- Pnt2d P3 = P1.Transformed(T1); //using T1 then T2
|
||||||
-- P3.Transform(T2); // P3 = P2 !!!
|
-- 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;
|
PreMultiply (me : in out; T : Trsf2d) is static;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user