blob: 6844e7a3ed739643706c7c571a1ac776d8a520b9 (
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
|
// File: BRep_PointOnCurveOnSurface.cxx
// Created: Tue Aug 10 14:44:59 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <BRep_PointOnCurveOnSurface.ixx>
//=======================================================================
//function : BRep_PointOnCurveOnSurface
//purpose :
//=======================================================================
BRep_PointOnCurveOnSurface::BRep_PointOnCurveOnSurface
(const Standard_Real P,
const Handle(Geom2d_Curve)& C,
const Handle(Geom_Surface)& S,
const TopLoc_Location& L) :
BRep_PointsOnSurface(P,S,L),
myPCurve(C)
{
}
//=======================================================================
//function : IsPointOnCurveOnSurface
//purpose :
//=======================================================================
Standard_Boolean BRep_PointOnCurveOnSurface::IsPointOnCurveOnSurface()const
{
return Standard_True;
}
//=======================================================================
//function : IsPointOnCurveOnSurface
//purpose :
//=======================================================================
Standard_Boolean BRep_PointOnCurveOnSurface::IsPointOnCurveOnSurface
(const Handle(Geom2d_Curve)& PC,
const Handle(Geom_Surface)& S,
const TopLoc_Location& L)const
{
return (myPCurve == PC) && (Surface() == S) && (Location() == L);
}
//=======================================================================
//function : PCurve
//purpose :
//=======================================================================
const Handle(Geom2d_Curve)& BRep_PointOnCurveOnSurface::PCurve()const
{
return myPCurve;
}
//=======================================================================
//function : PCurve
//purpose :
//=======================================================================
void BRep_PointOnCurveOnSurface::PCurve(const Handle(Geom2d_Curve)& C)
{
myPCurve = C;
}
|