1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00

0026144: Missing operators in gp_GTrsf

This commit is contained in:
vsr 2015-08-13 15:45:10 +03:00 committed by abv
parent a72c4cb0e7
commit 00e18bf7e4

View File

@ -223,14 +223,14 @@ is
-- T1.Transforms(P2); //using T1 then T2
-- T2.Transforms(P2); // P1 = P2 !!!
---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 *=
---C++: alias operator *=
PreMultiply (me : in out; T : GTrsf) is static;