blob: a4cb7562ce525f12ca688c940ead45435e339c7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// File: PGeom_Axis2Placement.cxx
// Created: Wed Mar 3 12:38:41 1993
// Author: Philippe DAUTRY
// <fid@phylox>
// Copyright: Matra Datavision 1993
#include <PGeom_Axis2Placement.ixx>
//=======================================================================
//function : PGeom_Axis2Placement
//purpose :
//=======================================================================
PGeom_Axis2Placement::PGeom_Axis2Placement()
{}
//=======================================================================
//function : PGeom_Axis2Placement
//purpose :
//=======================================================================
PGeom_Axis2Placement::PGeom_Axis2Placement
(const gp_Ax1& aAxis,
const gp_Dir& aXDirection) :
PGeom_AxisPlacement(aAxis),
xDirection(aXDirection)
{}
//=======================================================================
//function : XDirection
//purpose :
//=======================================================================
void PGeom_Axis2Placement::XDirection(const gp_Dir& aXDirection)
{ xDirection = aXDirection; }
//=======================================================================
//function : XDirection
//purpose :
//=======================================================================
gp_Dir PGeom_Axis2Placement::XDirection() const
{ return xDirection; }
|