0024023: Revamp the OCCT Handle -- general
[occt.git] / src / Geom2d / Geom2d_AxisPlacement.cxx
1 // Created on: 1993-03-24
2 // Created by: JCV
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 <Geom2d_AxisPlacement.ixx>
18
19
20
21 typedef Geom2d_AxisPlacement          AxisPlacement;
22 typedef gp_Dir2d  Dir2d;
23 typedef gp_Pnt2d  Pnt2d;
24 typedef gp_Trsf2d Trsf2d;
25 typedef gp_Vec2d  Vec2d;
26
27
28
29
30 Handle(Geom2d_Geometry) Geom2d_AxisPlacement::Copy() const {
31
32   Handle(Geom2d_AxisPlacement) A;
33   A = new AxisPlacement (axis);
34   return A;
35 }
36
37
38
39
40
41
42 Geom2d_AxisPlacement::Geom2d_AxisPlacement (const gp_Ax2d& A) { axis = A; }
43
44
45 Geom2d_AxisPlacement::Geom2d_AxisPlacement (const Pnt2d& P, const Dir2d& V) {
46
47    axis = gp_Ax2d (P, V);
48 }
49
50 gp_Ax2d Geom2d_AxisPlacement::Ax2d () const { return axis; }
51
52 Dir2d Geom2d_AxisPlacement::Direction () const { return axis.Direction(); }
53
54 Pnt2d Geom2d_AxisPlacement::Location () const { return axis.Location(); }
55
56 void Geom2d_AxisPlacement::Reverse()        { axis.Reverse(); }
57
58 Handle(Geom2d_AxisPlacement) Geom2d_AxisPlacement::Reversed() const {
59
60   gp_Ax2d A = axis;
61   A.Reverse();
62   Handle(Geom2d_AxisPlacement) Temp = new AxisPlacement (A);
63   return Temp;
64 }
65
66 void Geom2d_AxisPlacement::Transform (const Trsf2d& T) { axis.Transform (T); }
67
68
69 void Geom2d_AxisPlacement::SetAxis (const gp_Ax2d& A)  { axis = A; }
70
71 void Geom2d_AxisPlacement::SetLocation (const Pnt2d& P) {axis.SetLocation (P);}
72
73 void Geom2d_AxisPlacement::SetDirection (const Dir2d& V) {
74
75   axis.SetDirection(V);
76 }
77
78 Standard_Real Geom2d_AxisPlacement::Angle (const Handle(Geom2d_AxisPlacement)& Other) const {
79
80   return axis.Angle (Other->Ax2d());
81 }