blob: 976f96521dfae66cdaf49fb7d754340564849846 (
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
|
// File: PBRep_PointsOnSurface.cxx
// Created: Wed Aug 11 12:36:55 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <PBRep_PointsOnSurface.ixx>
//=======================================================================
//function : PBRep_PointsOnSurface
//purpose :
//=======================================================================
PBRep_PointsOnSurface::PBRep_PointsOnSurface
(const Standard_Real P,
const Handle(PGeom_Surface)& S,
const PTopLoc_Location& L) :
PBRep_PointRepresentation(P,L),
mySurface(S)
{
}
//=======================================================================
//function : Surface
//purpose :
//=======================================================================
Handle(PGeom_Surface) PBRep_PointsOnSurface::Surface()const
{
return mySurface;
}
|