blob: e9ff2e86b9643be1d86dc8a75753333f3a1b23ac (
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
|
#include <IntSurf_PathPoint.ixx>
IntSurf_PathPoint::IntSurf_PathPoint ():
ispass(Standard_True), istgt(Standard_True)
{
}
IntSurf_PathPoint::IntSurf_PathPoint (const gp_Pnt& P,
const Standard_Real U,
const Standard_Real V):
pt(P),ispass(Standard_True),istgt(Standard_True)
{
sequv = new TColgp_HSequenceOfXY ();
sequv->Append(gp_XY(U,V));
}
void IntSurf_PathPoint::SetValue (const gp_Pnt& P,
const Standard_Real U,
const Standard_Real V)
{
pt = P;
sequv = new TColgp_HSequenceOfXY ();
sequv->Append(gp_XY(U,V));
}
|