blob: dbe8334605c40ee95ebab38abc0b025ed9c8768e (
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
|
// File: BRep_PointOnSurface.cxx
// Created: Tue Aug 10 14:45:11 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <BRep_PointOnSurface.ixx>
//=======================================================================
//function : BRep_PointOnSurface
//purpose :
//=======================================================================
BRep_PointOnSurface::BRep_PointOnSurface(const Standard_Real P1,
const Standard_Real P2,
const Handle(Geom_Surface)& S,
const TopLoc_Location& L) :
BRep_PointsOnSurface(P1,S,L),
myParameter2(P2)
{
}
//=======================================================================
//function : IsPointOnSurface
//purpose :
//=======================================================================
Standard_Boolean BRep_PointOnSurface::IsPointOnSurface()const
{
return Standard_True;
}
//=======================================================================
//function : IsPointOnSurface
//purpose :
//=======================================================================
Standard_Boolean BRep_PointOnSurface::IsPointOnSurface
(const Handle(Geom_Surface)& S,
const TopLoc_Location& L)const
{
return (Surface() == S) && (Location() == L);
}
//=======================================================================
//function : Parameter2
//purpose :
//=======================================================================
Standard_Real BRep_PointOnSurface::Parameter2()const
{
return myParameter2;
}
//=======================================================================
//function : Parameter2
//purpose :
//=======================================================================
void BRep_PointOnSurface::Parameter2(const Standard_Real P)
{
myParameter2 = P;
}
|