0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / Geom2d / Geom2d_AxisPlacement.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
7fd59977 17
42cf5bc1 18#include <Geom2d_AxisPlacement.hxx>
19#include <Geom2d_Geometry.hxx>
20#include <gp_Ax2d.hxx>
21#include <gp_Dir2d.hxx>
22#include <gp_Pnt2d.hxx>
23#include <gp_Trsf2d.hxx>
24#include <Standard_Type.hxx>
7fd59977 25
92efcf78 26IMPLEMENT_STANDARD_RTTIEXT(Geom2d_AxisPlacement,Geom2d_Geometry)
27
7fd59977 28typedef Geom2d_AxisPlacement AxisPlacement;
7fd59977 29typedef gp_Dir2d Dir2d;
30typedef gp_Pnt2d Pnt2d;
31typedef gp_Trsf2d Trsf2d;
32typedef gp_Vec2d Vec2d;
33
34
35
36
37Handle(Geom2d_Geometry) Geom2d_AxisPlacement::Copy() const {
38
c04c30b3 39 Handle(Geom2d_AxisPlacement) A;
7fd59977 40 A = new AxisPlacement (axis);
41 return A;
42}
43
44
45
46
47
48
49Geom2d_AxisPlacement::Geom2d_AxisPlacement (const gp_Ax2d& A) { axis = A; }
50
51
52Geom2d_AxisPlacement::Geom2d_AxisPlacement (const Pnt2d& P, const Dir2d& V) {
53
54 axis = gp_Ax2d (P, V);
55}
56
57gp_Ax2d Geom2d_AxisPlacement::Ax2d () const { return axis; }
58
59Dir2d Geom2d_AxisPlacement::Direction () const { return axis.Direction(); }
60
61Pnt2d Geom2d_AxisPlacement::Location () const { return axis.Location(); }
62
63void Geom2d_AxisPlacement::Reverse() { axis.Reverse(); }
64
c04c30b3 65Handle(Geom2d_AxisPlacement) Geom2d_AxisPlacement::Reversed() const {
7fd59977 66
67 gp_Ax2d A = axis;
68 A.Reverse();
c04c30b3 69 Handle(Geom2d_AxisPlacement) Temp = new AxisPlacement (A);
7fd59977 70 return Temp;
71}
72
73void Geom2d_AxisPlacement::Transform (const Trsf2d& T) { axis.Transform (T); }
74
75
76void Geom2d_AxisPlacement::SetAxis (const gp_Ax2d& A) { axis = A; }
77
78void Geom2d_AxisPlacement::SetLocation (const Pnt2d& P) {axis.SetLocation (P);}
79
80void Geom2d_AxisPlacement::SetDirection (const Dir2d& V) {
81
82 axis.SetDirection(V);
83}
84
c04c30b3 85Standard_Real Geom2d_AxisPlacement::Angle (const Handle(Geom2d_AxisPlacement)& Other) const {
7fd59977 86
87 return axis.Angle (Other->Ax2d());
88}