blob: 286747fce530fde9400bc16cc3f93d15e51e072f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// File gp_Pnt2d.cxx, JCV 06/90
// File gp_Pnt2d.cxx, REG 26/10/90 nouvelle version
// JCV 08/01/91 Modifs introduction des classes XY, Mat2d dans le package gp
#define No_Standard_OutOfRange
#include <gp_Pnt2d.ixx>
void gp_Pnt2d::Transform (const gp_Trsf2d& T)
{
if (T.Form () == gp_Identity) { }
else if (T.Form () == gp_Translation)
{ coord.Add (T.TranslationPart ()); }
else if (T.Form () == gp_Scale) {
coord.Multiply (T.ScaleFactor ());
coord.Add (T.TranslationPart ());
}
else if (T.Form () == gp_PntMirror) {
coord.Reverse ();
coord.Add (T.TranslationPart ());
}
else { T.Transforms(coord); }
}
void gp_Pnt2d::Mirror (const gp_Pnt2d& P)
{
coord.Reverse ();
gp_XY XY = P.coord;
XY.Multiply (2.0);
coord.Add (XY);
}
gp_Pnt2d gp_Pnt2d::Mirrored (const gp_Pnt2d& P) const
{
gp_Pnt2d Pres = *this;
Pres.Mirror (P);
return Pres;
}
void gp_Pnt2d::Mirror (const gp_Ax2d& A)
{
gp_Trsf2d T;
T.SetMirror (A);
T.Transforms (coord);
}
gp_Pnt2d gp_Pnt2d::Mirrored (const gp_Ax2d& A) const
{
gp_Pnt2d P = *this;
P.Mirror (A);
return P;
}
|