0024023: Revamp the OCCT Handle -- general
[occt.git] / src / Geom / Geom_Axis1Placement.cxx
CommitLineData
b311480e 1// Created on: 1993-03-09
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
17#include <Geom_Axis1Placement.ixx>
18
19typedef Geom_Axis1Placement Axis1Placement;
7fd59977 20typedef gp_Ax2 Ax2;
21typedef gp_Dir Dir;
22typedef gp_Pnt Pnt;
23typedef gp_Trsf Trsf;
24typedef gp_Vec Vec;
25
26//=======================================================================
27//function : Copy
28//purpose :
29//=======================================================================
30
31Handle(Geom_Geometry) Geom_Axis1Placement::Copy() const {
32
c04c30b3 33 Handle(Geom_Axis1Placement) A1;
7fd59977 34 A1 = new Axis1Placement (axis);
35 return A1;
36}
37
38
39
40
41
42//=======================================================================
43//function : Geom_Axis1Placement
44//purpose :
45//=======================================================================
46
47Geom_Axis1Placement::Geom_Axis1Placement (const gp_Ax1& A1)
48{
49 axis = A1;
50}
51
52
53Geom_Axis1Placement::Geom_Axis1Placement (const Pnt& P, const Dir& V) {
54
55 axis = gp_Ax1 (P, V);
56}
57
58
59
60void Geom_Axis1Placement::SetDirection (const Dir& V) {axis.SetDirection (V);}
61
62const gp_Ax1& Geom_Axis1Placement::Ax1 () const { return Axis(); }
63
64void Geom_Axis1Placement::Reverse() { axis.Reverse(); }
65
66void Geom_Axis1Placement::Transform (const Trsf& T) { axis.Transform (T); }
67
c04c30b3 68Handle(Geom_Axis1Placement) Geom_Axis1Placement::Reversed() const {
7fd59977 69
70 gp_Ax1 A1 = axis;
71 A1.Reverse();
72 Handle (Axis1Placement) Temp = new Axis1Placement (A1);
73 return Temp;
74}
75
76