Warnings on vc14 were eliminated
[occt.git] / src / Geom2d / Geom2d_Transformation.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
18 #include <Geom2d_Transformation.hxx>
19 #include <gp_Ax2d.hxx>
20 #include <gp_Pnt2d.hxx>
21 #include <gp_Trsf2d.hxx>
22 #include <gp_Vec2d.hxx>
23 #include <Standard_ConstructionError.hxx>
24 #include <Standard_OutOfRange.hxx>
25 #include <Standard_Type.hxx>
26
27 IMPLEMENT_STANDARD_RTTIEXT(Geom2d_Transformation,MMgt_TShared)
28
29 typedef Geom2d_Transformation         Transformation;
30 typedef gp_Ax2d     Ax2d;
31 typedef gp_Pnt2d    Pnt2d;
32 typedef gp_TrsfForm TrsfForm;
33 typedef gp_Vec2d    Vec2d;
34
35 Handle(Geom2d_Transformation) Geom2d_Transformation::Copy() const {
36
37   Handle(Geom2d_Transformation) T;
38   T = new Transformation (gpTrsf2d);
39   return T; 
40 }
41
42
43
44
45 Geom2d_Transformation::Geom2d_Transformation () { }
46
47
48 Geom2d_Transformation::Geom2d_Transformation (const gp_Trsf2d& T) 
49 :  gpTrsf2d (T) { }
50
51
52 Handle(Geom2d_Transformation) Geom2d_Transformation::Inverted () const {
53
54    return new Transformation (gpTrsf2d.Inverted());
55 }
56
57
58 Handle(Geom2d_Transformation) Geom2d_Transformation::Multiplied (
59
60 const Handle(Geom2d_Transformation)& Other) const {
61
62    return new Transformation (gpTrsf2d.Multiplied (Other->Trsf2d()));
63 }
64
65
66 Handle(Geom2d_Transformation) Geom2d_Transformation::Powered (const Standard_Integer N) const{
67
68   gp_Trsf2d Temp = gpTrsf2d;
69   Temp.Power (N);
70   return new Transformation (Temp);
71 }
72
73
74
75 void Geom2d_Transformation::SetMirror (const gp_Pnt2d& P) {
76
77   gpTrsf2d.SetMirror (P);
78 }
79
80
81 void Geom2d_Transformation::SetMirror (const gp_Ax2d& A) {
82
83   gpTrsf2d.SetMirror (A);
84 }
85
86
87 void Geom2d_Transformation::SetRotation (const gp_Pnt2d& P, const Standard_Real Ang) { 
88
89   gpTrsf2d.SetRotation (P, Ang); 
90 }
91
92
93 void Geom2d_Transformation::SetScale (const gp_Pnt2d& P, const Standard_Real S) { 
94
95   gpTrsf2d.SetScale (P, S);
96 }
97
98
99 void Geom2d_Transformation::SetTransformation (const gp_Ax2d& ToAxis) { 
100
101   gpTrsf2d.SetTransformation (ToAxis);
102 }
103
104
105 void Geom2d_Transformation::SetTransformation (
106 const gp_Ax2d& FromAxis1, const gp_Ax2d& ToAxis2) {
107
108   gpTrsf2d.SetTransformation (FromAxis1, ToAxis2);
109 }
110
111
112 void Geom2d_Transformation::SetTranslation (const gp_Vec2d& V) {
113
114   gpTrsf2d.SetTranslation (V);
115 }
116
117
118 void Geom2d_Transformation::SetTranslation (const gp_Pnt2d& P1, const gp_Pnt2d& P2) {
119
120   gpTrsf2d.SetTranslation (P1, P2); 
121 }
122
123
124 void Geom2d_Transformation::SetTrsf2d (const gp_Trsf2d& T) { gpTrsf2d = T; }
125
126
127 Standard_Boolean Geom2d_Transformation::IsNegative () const {
128
129   return gpTrsf2d.IsNegative();
130 }
131
132
133 TrsfForm Geom2d_Transformation::Form () const { return gpTrsf2d.Form(); }
134
135
136 Standard_Real Geom2d_Transformation::ScaleFactor () const {
137
138    return gpTrsf2d.ScaleFactor();
139 }
140
141
142 gp_Trsf2d Geom2d_Transformation::Trsf2d () const {  return gpTrsf2d; }
143
144
145
146 Standard_Real Geom2d_Transformation::Value (const Standard_Integer Row, const Standard_Integer Col) const{
147
148   return gpTrsf2d.Value (Row, Col);
149 }
150
151
152 void Geom2d_Transformation::Invert () { gpTrsf2d.Invert(); }
153
154
155 void Geom2d_Transformation::Transforms (Standard_Real& X, Standard_Real& Y) const {  
156
157   gpTrsf2d.Transforms (X, Y); 
158 }
159
160
161 void Geom2d_Transformation::Multiply (const Handle(Geom2d_Transformation)& Other) {
162
163   gpTrsf2d.Multiply (Other->Trsf2d());
164 }
165
166
167 void Geom2d_Transformation::Power (const Standard_Integer N) { gpTrsf2d.Power (N); }
168
169
170 void Geom2d_Transformation::PreMultiply (
171 const Handle(Geom2d_Transformation)& Other) {
172
173   gpTrsf2d.PreMultiply (Other->Trsf2d());
174 }
175
176
177
178