blob: 9a321acb4ed5be2517933de14e7b264455af8edd (
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: PGeom2d_Line.cxx
// Created: Wed Mar 3 18:17:29 1993
// Author: Philippe DAUTRY
// <fid@phylox>
// Copyright: Matra Datavision 1993
#include <PGeom2d_Line.ixx>
//=======================================================================
//function : PGeom2d_Line
//purpose :
//=======================================================================
PGeom2d_Line::PGeom2d_Line()
{}
//=======================================================================
//function : PGeom2d_Line
//purpose :
//=======================================================================
PGeom2d_Line::PGeom2d_Line(const gp_Ax2d& aPosition) :
position(aPosition)
{}
//=======================================================================
//function : Position
//purpose :
//=======================================================================
void PGeom2d_Line::Position(const gp_Ax2d& aPosition)
{ position = aPosition; }
//=======================================================================
//function : Position
//purpose :
//=======================================================================
gp_Ax2d PGeom2d_Line::Position() const
{ return position; }
|