summaryrefslogtreecommitdiff
path: root/inc/IntStart_PathPoint.gxx
blob: 0c663fc558b462aba76ffd417f91e64dd8fb1f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
IntStart_PathPoint::IntStart_PathPoint () {
}

IntStart_PathPoint::IntStart_PathPoint (const gp_Pnt& P,
					const Standard_Real Tol,
					const TheVertex& V,
					const TheArc& A,
					const Standard_Real Parameter):

  point(P),tol(Tol),isnew(Standard_False),vtx(V),arc(A),param(Parameter)
{}

IntStart_PathPoint::IntStart_PathPoint (const gp_Pnt& P,
					const Standard_Real Tol,
					const TheArc& A,
					const Standard_Real Parameter):

  point(P),tol(Tol),isnew(Standard_True),arc(A),param(Parameter)
{}