0024927: Getting rid of "Persistent" functionality -- Storable
[occt.git] / src / gp / gp_Ax3.cxx
1 // Created on: 1993-08-03
2 // Created by: Laurent BOURESCHE
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <gp_Ax3.ixx>
18
19 //=======================================================================
20 //function : gp_Ax3
21 //purpose  : 
22 //=======================================================================
23
24 gp_Ax3::gp_Ax3 (const gp_Pnt& P,
25                 const gp_Dir& V) : axis(P,V)
26 {
27   Standard_Real A = V.X();
28   Standard_Real B = V.Y();
29   Standard_Real C = V.Z();
30   Standard_Real Aabs = A;
31   if (Aabs < 0) Aabs = - Aabs;
32   Standard_Real Babs = B;
33   if (Babs < 0) Babs = - Babs;
34   Standard_Real Cabs = C;
35   if (Cabs < 0) Cabs = - Cabs;
36   gp_Dir D;
37   
38   //  pour determiner l axe X :
39   //  on dit que le produit scalaire Vx.V = 0. 
40   //  et on recherche le max(A,B,C) pour faire la division.
41   //  l une des coordonnees du vecteur est nulle. 
42   
43   if     ( Babs <= Aabs && Babs <= Cabs) {
44     if (Aabs > Cabs) D.SetCoord(-C,0., A);
45     else             D.SetCoord( C,0.,-A);
46   }
47   else if( Aabs <= Babs && Aabs <= Cabs) {
48     if (Babs > Cabs) D.SetCoord(0.,-C, B);
49     else             D.SetCoord(0., C,-B);
50   }
51   else {
52     if (Aabs > Babs) D.SetCoord(-B, A,0.);
53     else             D.SetCoord( B,-A,0.);
54   }
55   vxdir = D;
56   vydir = V.Crossed(vxdir);
57 }
58
59 void  gp_Ax3::Mirror(const gp_Pnt& P)
60 {
61   axis.Mirror (P);
62   vxdir.Reverse ();
63   vydir.Reverse ();
64 }
65
66 gp_Ax3  gp_Ax3::Mirrored(const gp_Pnt& P)const
67 {
68   gp_Ax3 Temp = *this;
69   Temp.Mirror (P);
70   return Temp;
71 }
72
73 void  gp_Ax3::Mirror(const gp_Ax1& A1)
74 {
75   vydir.Mirror (A1);
76   vxdir.Mirror (A1);
77   axis.Mirror (A1);
78 }
79
80 gp_Ax3  gp_Ax3::Mirrored(const gp_Ax1& A1)const
81 {
82   gp_Ax3 Temp = *this;
83   Temp.Mirror (A1);
84   return Temp;
85 }
86
87 void  gp_Ax3::Mirror(const gp_Ax2& A2)
88 {
89   vydir.Mirror (A2);
90   vxdir.Mirror (A2);
91   axis.Mirror (A2);
92 }
93
94 gp_Ax3  gp_Ax3::Mirrored(const gp_Ax2& A2)const
95 {
96   gp_Ax3 Temp = *this;
97   Temp.Mirror (A2);
98   return Temp;
99 }
100