mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
0026144: Missing operators in gp_GTrsf
This commit is contained in:
parent
3e1b1da77c
commit
1fa8e37b83
@ -196,12 +196,19 @@ public:
|
|||||||
//! T1.Transforms(P2); //using T1 then T2
|
//! T1.Transforms(P2); //using T1 then T2
|
||||||
//! T2.Transforms(P2); // P1 = P2 !!!
|
//! T2.Transforms(P2); // P1 = P2 !!!
|
||||||
gp_GTrsf Multiplied (const gp_GTrsf& T) const;
|
gp_GTrsf Multiplied (const gp_GTrsf& T) const;
|
||||||
|
gp_GTrsf operator * (const gp_GTrsf& T) const
|
||||||
|
{
|
||||||
|
return Multiplied(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//! Computes the transformation composed with <me> and T.
|
//! Computes the transformation composed with <me> and T.
|
||||||
//! <me> = <me> * T
|
//! <me> = <me> * T
|
||||||
//! C++: alias operator *=
|
|
||||||
Standard_EXPORT void Multiply (const gp_GTrsf& T);
|
Standard_EXPORT void Multiply (const gp_GTrsf& T);
|
||||||
|
void operator *= (const gp_GTrsf& T)
|
||||||
|
{
|
||||||
|
Multiply(T);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//! Computes the product of the transformation T and this
|
//! Computes the product of the transformation T and this
|
||||||
|
Loading…
x
Reference in New Issue
Block a user