blob: 8502782cdc3239b1f8980e704c54f1fce1feb86a (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// File: PBRep_PointRepresentation.cxx
// Created: Wed Aug 11 12:34:19 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <PBRep_PointRepresentation.ixx>
//=======================================================================
//function : PBRep_PointRepresentation
//purpose :
//=======================================================================
PBRep_PointRepresentation::PBRep_PointRepresentation
(const Standard_Real P,
const PTopLoc_Location& L) :
myLocation(L),
myParameter(P)
{
}
//=======================================================================
//function : Location
//purpose :
//=======================================================================
PTopLoc_Location PBRep_PointRepresentation::Location()const
{
return myLocation;
}
//=======================================================================
//function : Parameter
//purpose :
//=======================================================================
Standard_Real PBRep_PointRepresentation::Parameter()const
{
return myParameter;
}
//=======================================================================
//function : Parameter
//purpose :
//=======================================================================
void PBRep_PointRepresentation::Parameter(const Standard_Real P)
{
myParameter = P;
}
//=======================================================================
//function : Next
//purpose :
//=======================================================================
Handle(PBRep_PointRepresentation) PBRep_PointRepresentation::Next()const
{
return myNext;
}
//=======================================================================
//function : Next
//purpose :
//=======================================================================
void PBRep_PointRepresentation::Next(const Handle(PBRep_PointRepresentation)& N)
{
myNext = N;
}
//=======================================================================
//function : IsPointOnCurve
//purpose :
//=======================================================================
Standard_Boolean PBRep_PointRepresentation::IsPointOnCurve() const
{
return Standard_False;
}
//=======================================================================
//function : IsPointOnCurveOnSurface
//purpose :
//=======================================================================
Standard_Boolean PBRep_PointRepresentation::IsPointOnCurveOnSurface() const
{
return Standard_False;
}
//=======================================================================
//function : IsPointOnSurface
//purpose :
//=======================================================================
Standard_Boolean PBRep_PointRepresentation::IsPointOnSurface() const
{
return Standard_False;
}
|