void Sketcher_Profile::ShapeFunctor::addSegmentX( const TCollection_AsciiString& x,
int CurrentIndex )
{
+ myMove = none;
myLength = x.RealValue();
if ( Abs( myDx ) < Precision::Confusion() ) {
MESSAGE("profile : cannot intersect, arg "<<CurrentIndex-1);
myLength = ( myLength - myX ) / myDx;
if ( Abs( myLength ) > Precision::Confusion() )
myMove = line;
- else
- myMove = none;
}
/*!
void Sketcher_Profile::ShapeFunctor::addSegmentY( const TCollection_AsciiString& y,
int CurrentIndex )
{
+ myMove = none;
myLength = y.RealValue();
if ( Abs( myDy ) < Precision::Confusion() ) {
MESSAGE("profile : cannot intersect, arg "<<CurrentIndex-1);
myLength = ( myLength - myY ) / myDy;
if ( Abs( myLength ) > Precision::Confusion() )
myMove = line;
- else
- myMove = none;
}
/*!