blob: 9b09dfc7638d2b291c08066f0962b41b549eb6e2 (
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
48
49
|
// File: BRep_PointRepresentation.lxx
// Created: Tue Aug 10 14:53:17 1993
// Author: Remi LEQUETTE
// <rle@phylox>
//=======================================================================
//function : Location
//purpose :
//=======================================================================
inline const TopLoc_Location& BRep_PointRepresentation::Location()const
{
return myLocation;
}
//=======================================================================
//function : Location
//purpose :
//=======================================================================
inline void BRep_PointRepresentation::Location(const TopLoc_Location& L)
{
myLocation = L;
}
//=======================================================================
//function : Parameter
//purpose :
//=======================================================================
inline Standard_Real BRep_PointRepresentation::Parameter()const
{
return myParameter;
}
//=======================================================================
//function : Parameter
//purpose :
//=======================================================================
inline void BRep_PointRepresentation::Parameter(const Standard_Real P)
{
myParameter = P;
}
|