: TFirst (0.0),
TLast (0.0),
PTol (0.0),
+ myPeriod(0.0),
CurIndex(-1),
Forward (Standard_False),
- IsbyAC (Standard_False)
+ IsbyAC (Standard_False),
+ Periodic(Standard_False)
{
}
TFirst (0.0),
TLast (0.0),
PTol (0.0),
+ myPeriod(0.0),
CurIndex(-1),
Forward (Standard_False),
- IsbyAC (theIsAC)
+ IsbyAC (theIsAC),
+ Periodic(Standard_False)
{
Initialize(theWire, theIsAC);
}
TFirst (theFirst),
TLast (theLast),
PTol (theTolerance),
+ myPeriod(0.0),
CurIndex(-1),
Forward (Standard_False),
- IsbyAC (theIsAC)
+ IsbyAC (theIsAC),
+ Periodic(Standard_False)
{
Initialize(theWire, theIsAC, theFirst, theLast, theTolerance);
}
Standard_Real TFirst;
Standard_Real TLast;
Standard_Real PTol;
+ Standard_Real myPeriod;
Handle(BRepAdaptor_HArray1OfCurve) myCurves;
Handle(TColStd_HArray1OfReal) myKnots;
Standard_Integer CurIndex;
Standard_Boolean Forward;
Standard_Boolean IsbyAC;
+ Standard_Boolean Periodic;
+
+
};