blob: 68188e913dd682c6b9be11111992f7ebdf81a7af (
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: PBRep_PointOnSurface.cxx
// Created: Wed Aug 11 12:40:37 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <PBRep_PointOnSurface.ixx>
//=======================================================================
//function : PBRep_PointOnSurface
//purpose :
//=======================================================================
PBRep_PointOnSurface::PBRep_PointOnSurface(const Standard_Real P1,
const Standard_Real P2,
const Handle(PGeom_Surface)& S,
const PTopLoc_Location& L) :
PBRep_PointsOnSurface(P1,S,L),
myParameter2(P2)
{
}
//=======================================================================
//function : Parameter2
//purpose :
//=======================================================================
Standard_Real PBRep_PointOnSurface::Parameter2()const
{
return myParameter2;
}
//=======================================================================
//function : IsPointOnSurface
//purpose :
//=======================================================================
Standard_Boolean PBRep_PointOnSurface::IsPointOnSurface() const
{
return Standard_True;
}
|