0030448: Coding - add typo detection to derivation creation methods using Standard_NO...
[occt.git] / src / Geom2d / Geom2d_VectorWithMagnitude.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_Geometry.hxx>
19 #include <Geom2d_Vector.hxx>
20 #include <Geom2d_VectorWithMagnitude.hxx>
21 #include <gp_Pnt2d.hxx>
22 #include <gp_Trsf2d.hxx>
23 #include <gp_Vec2d.hxx>
24 #include <Standard_ConstructionError.hxx>
25 #include <Standard_Type.hxx>
26
27 IMPLEMENT_STANDARD_RTTIEXT(Geom2d_VectorWithMagnitude,Geom2d_Vector)
28
29 typedef Geom2d_Vector Vector;
30 typedef Geom2d_VectorWithMagnitude         VectorWithMagnitude;
31 typedef gp_Ax2d   Ax2d;
32 typedef gp_Pnt2d  Pnt2d;
33 typedef gp_Trsf2d Trsf2d;
34
35 Geom2d_VectorWithMagnitude::Geom2d_VectorWithMagnitude (const gp_Vec2d& V) 
36 { gpVec2d = V; }
37
38
39 Geom2d_VectorWithMagnitude::Geom2d_VectorWithMagnitude (
40 const Standard_Real X,  const Standard_Real Y) { gpVec2d = gp_Vec2d (X, Y); }
41
42
43 Geom2d_VectorWithMagnitude::Geom2d_VectorWithMagnitude (
44 const Pnt2d& P1, const Pnt2d& P2) { gpVec2d = gp_Vec2d (P1, P2); }
45
46
47 Handle(Geom2d_Geometry) Geom2d_VectorWithMagnitude::Copy() const {
48
49   Handle(Geom2d_VectorWithMagnitude) V;
50   V = new VectorWithMagnitude (gpVec2d);
51   return V; 
52 }
53
54
55 void Geom2d_VectorWithMagnitude::SetCoord (const Standard_Real X, const Standard_Real Y) {
56
57   gpVec2d = gp_Vec2d (X, Y);
58 }
59
60
61 void Geom2d_VectorWithMagnitude::SetVec2d (const gp_Vec2d& V) { gpVec2d = V; }
62
63 void Geom2d_VectorWithMagnitude::SetX (const Standard_Real X) { gpVec2d.SetX (X); }
64
65
66 void Geom2d_VectorWithMagnitude::SetY (const Standard_Real Y) { gpVec2d.SetY (Y); }
67
68
69 Standard_Real Geom2d_VectorWithMagnitude::Magnitude () const { 
70   
71   return gpVec2d.Magnitude ();
72 }
73
74
75 Standard_Real Geom2d_VectorWithMagnitude::SquareMagnitude () const { 
76
77   return gpVec2d.SquareMagnitude ();
78 }
79
80
81 void Geom2d_VectorWithMagnitude::Add (const Handle(Geom2d_Vector)& Other) { 
82
83   gpVec2d.Add (Other->Vec2d());
84 }
85
86
87 Handle(Geom2d_VectorWithMagnitude) Geom2d_VectorWithMagnitude::Added (
88
89 const Handle(Geom2d_Vector)& Other) const { 
90      
91  gp_Vec2d Temp = Other->Vec2d();
92  Temp.Add (gpVec2d);  
93  return new VectorWithMagnitude (Temp);
94 }
95
96
97 Standard_Real Geom2d_VectorWithMagnitude::Crossed (const Handle(Geom2d_Vector)& Other) const{ 
98
99   return gpVec2d.Crossed (Other->Vec2d());
100 }
101
102
103 void Geom2d_VectorWithMagnitude::Divide (const Standard_Real Scalar) { 
104
105    gpVec2d.Divide (Scalar);
106 }
107
108
109 Handle(Geom2d_VectorWithMagnitude) Geom2d_VectorWithMagnitude::Divided (
110 const Standard_Real Scalar) const { 
111
112   gp_Vec2d V (gpVec2d);
113   V.Divide (Scalar);
114   return new VectorWithMagnitude (V);
115 }
116
117
118 Handle(Geom2d_VectorWithMagnitude) Geom2d_VectorWithMagnitude::Multiplied (
119 const Standard_Real Scalar) const { 
120
121   gp_Vec2d V(gpVec2d);
122   V.Multiply (Scalar);
123   return new VectorWithMagnitude (V);
124 }
125
126
127 void Geom2d_VectorWithMagnitude::Multiply (const Standard_Real Scalar) { 
128
129    gpVec2d.Multiply (Scalar);
130 }
131
132
133 void Geom2d_VectorWithMagnitude::Normalize () { gpVec2d.Normalize (); }
134
135
136 Handle(Geom2d_VectorWithMagnitude) Geom2d_VectorWithMagnitude::Normalized () const { 
137
138    gp_Vec2d V = gpVec2d.Normalized();
139    return new VectorWithMagnitude (V);
140 }
141
142
143 void Geom2d_VectorWithMagnitude::Subtract (const Handle(Geom2d_Vector)& Other) { 
144
145   gpVec2d.Subtract (Other->Vec2d());
146 }
147
148
149 Handle(Geom2d_VectorWithMagnitude) Geom2d_VectorWithMagnitude::Subtracted (
150 const Handle(Geom2d_Vector)& Other) const { 
151
152   gp_Vec2d V = gpVec2d;
153   V.Subtract (Other->Vec2d());
154   return new VectorWithMagnitude (V);
155 }
156
157
158
159 void Geom2d_VectorWithMagnitude::Transform (const Trsf2d& T) { 
160
161   gpVec2d.Transform (T);
162 }