0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[occt.git] / src / gce / gce_MakeMirror.cxx
1 // Created on: 1992-09-04
2 // Created by: Remi GILET
3 // Copyright (c) 1992-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
18 #include <gce_MakeMirror.hxx>
19 #include <gp_Ax1.hxx>
20 #include <gp_Ax2.hxx>
21 #include <gp_Ax3.hxx>
22 #include <gp_Dir.hxx>
23 #include <gp_Lin.hxx>
24 #include <gp_Pln.hxx>
25 #include <gp_Pnt.hxx>
26 #include <gp_Trsf.hxx>
27
28 //=========================================================================
29 //   Creation d une symetrie  de gp par rapport a un point.             +
30 //=========================================================================
31 gce_MakeMirror::gce_MakeMirror(const gp_Pnt&  Point ) 
32
33   TheMirror.SetMirror(Point); 
34 }
35
36 //=========================================================================
37 //   Creation d une symetrie  de gp par rapport a une droite.           +
38 //=========================================================================
39
40 gce_MakeMirror::gce_MakeMirror(const gp_Ax1& Axis ) 
41
42   TheMirror.SetMirror(Axis); 
43 }
44
45 //=========================================================================
46 //   Creation d une symetrie  de gp par rapport a une droite.           +
47 //=========================================================================
48
49 gce_MakeMirror::gce_MakeMirror(const gp_Lin&  Line ) 
50 {
51   TheMirror.SetMirror(gp_Ax1(Line.Location(),Line.Direction()));
52 }
53
54 //=========================================================================
55 //   Creation d une symetrie  de gp par rapport a une droite definie    +
56 //   par un point et une direction.                                       +
57 //=========================================================================
58
59 gce_MakeMirror::gce_MakeMirror(const gp_Pnt&  Point ,
60                                const gp_Dir&  Direc ) 
61 {
62   TheMirror.SetMirror(gp_Ax1(Point,Direc));
63 }
64
65 //=========================================================================
66 //   Creation d une symetrie 3d de gp par rapport a un plan defini par    +
67 //   un Ax2 (Normale au plan et axe x du plan).                           +
68 //=========================================================================
69
70 gce_MakeMirror::gce_MakeMirror(const gp_Ax2&  Plane ) 
71
72   TheMirror.SetMirror(Plane); 
73 }
74
75 //=========================================================================
76 //   Creation d une symetrie 3d de gp par rapport a un plan Plane.        +
77 //=========================================================================
78
79 gce_MakeMirror::gce_MakeMirror(const gp_Pln& Plane ) 
80 {
81   TheMirror.SetMirror(Plane.Position().Ax2());
82 }
83
84 const gp_Trsf& gce_MakeMirror::Value() const
85
86   return TheMirror; 
87 }
88
89 const gp_Trsf& gce_MakeMirror::Operator() const 
90 {
91   return TheMirror;
92 }
93
94 gce_MakeMirror::operator gp_Trsf() const
95 {
96   return TheMirror;
97 }