blob: 06240c6844aa0af0de4c77da7181ba134fab34c1 (
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
|
// File: PGeom_AxisPlacement.cxx
// Created: Wed Mar 3 14:31:38 1993
// Author: Philippe DAUTRY
// <fid@phylox>
// Copyright: Matra Datavision 1993
#include <PGeom_AxisPlacement.ixx>
//=======================================================================
//function : PGeom_AxisPlacement
//purpose :
//=======================================================================
PGeom_AxisPlacement::PGeom_AxisPlacement(const gp_Ax1& aAxis) :
axis(aAxis)
{}
//=======================================================================
//function : PGeom_AxisPlacement
//purpose :
//=======================================================================
PGeom_AxisPlacement::PGeom_AxisPlacement()
{}
//=======================================================================
//function : Axis
//purpose :
//=======================================================================
void PGeom_AxisPlacement::Axis(const gp_Ax1& aAxis)
{ axis = aAxis; }
//=======================================================================
//function : Axis
//purpose :
//=======================================================================
gp_Ax1 PGeom_AxisPlacement::Axis() const
{ return axis; }
|