blob: 46eba36ac62c276816a331973c1b67b8966a9242 (
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
|
// File: PBRep_PointOnCurveOnSurface.cxx
// Created: Wed Aug 11 12:39:26 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <PBRep_PointOnCurveOnSurface.ixx>
//=======================================================================
//function : PBRep_PointOnCurveOnSurface
//purpose :
//=======================================================================
PBRep_PointOnCurveOnSurface::PBRep_PointOnCurveOnSurface
(const Standard_Real P,
const Handle(PGeom2d_Curve)& C,
const Handle(PGeom_Surface)& S,
const PTopLoc_Location& L) :
PBRep_PointsOnSurface(P,S,L),
myPCurve(C)
{
}
//=======================================================================
//function : PCurve
//purpose :
//=======================================================================
Handle(PGeom2d_Curve) PBRep_PointOnCurveOnSurface::PCurve()const
{
return myPCurve;
}
//=======================================================================
//function : IsPointOnCurveOnSurface
//purpose :
//=======================================================================
Standard_Boolean PBRep_PointOnCurveOnSurface::IsPointOnCurveOnSurface() const
{
return Standard_True;
}
|