0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / Geom2d / Geom2d_Direction.cxx
CommitLineData
b311480e 1// Created on: 1993-03-24
2// Created by: JCV
3// Copyright (c) 1993-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
42cf5bc1 17
18#include <Geom2d_Direction.hxx>
19#include <Geom2d_Geometry.hxx>
20#include <Geom2d_Vector.hxx>
7fd59977 21#include <gp.hxx>
42cf5bc1 22#include <gp_Dir2d.hxx>
23#include <gp_Trsf2d.hxx>
7fd59977 24#include <Standard_ConstructionError.hxx>
42cf5bc1 25#include <Standard_Type.hxx>
7fd59977 26
92efcf78 27IMPLEMENT_STANDARD_RTTIEXT(Geom2d_Direction,Geom2d_Vector)
28
7fd59977 29typedef Geom2d_Direction Direction;
7fd59977 30typedef gp_Ax2d Ax2d;
31typedef gp_Pnt2d Pnt2d;
32typedef gp_Trsf2d Trsf2d;
33
34
35
36
37
38Handle(Geom2d_Geometry) Geom2d_Direction::Copy() const {
39
c04c30b3 40 Handle(Geom2d_Direction) D;
7fd59977 41 D = new Direction (gpVec2d);
42 return D;
43}
44
45
46
47
48
49
50Geom2d_Direction::Geom2d_Direction (const Standard_Real X, const Standard_Real Y) {
51
52 Standard_Real D = Sqrt (X * X + Y * Y);
53 Standard_ConstructionError_Raise_if (D <= gp::Resolution(), "");
54 gpVec2d = gp_Vec2d (X/D, Y/D);
55}
56
57
58Geom2d_Direction::Geom2d_Direction (const gp_Dir2d& V) { gpVec2d = V; }
59
60
61void Geom2d_Direction::SetCoord (const Standard_Real X, const Standard_Real Y) {
62
63 Standard_Real D = Sqrt (X * X + Y * Y);
64 Standard_ConstructionError_Raise_if (D <= gp::Resolution(), "");
65 gpVec2d = gp_Vec2d (X/D, Y/D);
66}
67
68
69void Geom2d_Direction::SetDir2d (const gp_Dir2d& V) { gpVec2d = V; }
70
71
72void Geom2d_Direction::SetX (const Standard_Real X) {
73
74 Standard_Real D = Sqrt(X * X + gpVec2d.Y() * gpVec2d.Y());
75 Standard_ConstructionError_Raise_if (D <= gp::Resolution(), "");
76 gpVec2d = gp_Vec2d (X/D, gpVec2d.Y()/D);
77}
78
79
80void Geom2d_Direction::SetY (const Standard_Real Y) {
81
82 Standard_Real D = Sqrt (gpVec2d.X() * gpVec2d.X() + Y * Y);
83 Standard_ConstructionError_Raise_if (D <= gp::Resolution(), "");
84 gpVec2d = gp_Vec2d (gpVec2d.X()/D, Y/D);
85}
86
87
88gp_Dir2d Geom2d_Direction::Dir2d () const { return gpVec2d; }
89
90
91Standard_Real Geom2d_Direction::Magnitude () const { return 1.0; }
92
93
94Standard_Real Geom2d_Direction::SquareMagnitude () const { return 1.0; }
95
96
c04c30b3 97Standard_Real Geom2d_Direction::Crossed (const Handle(Geom2d_Vector)& Other) const {
7fd59977 98
99 return gpVec2d.Crossed (Other->Vec2d());
100}
101
102
103void Geom2d_Direction::Transform (const gp_Trsf2d& T) {
104
105 gp_Dir2d dir = gpVec2d;
106 dir.Transform (T);
107 gpVec2d = dir;
108}