mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-13 02:39:19 +08:00
29 lines
581 B
C++
Executable File
29 lines
581 B
C++
Executable File
#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));
|
|
}
|
|
|