// File: MAT2d_CutCurve.cxx // Created: Fri Sep 23 16:25:59 1994 // Author: Yves FRICAUD // #include #include #include #include #include #include //======================================================================= //function : MAT2d_CutCurve //purpose : //======================================================================= MAT2d_CutCurve::MAT2d_CutCurve() { } //======================================================================= //function : MAT2d_CutCurve //purpose : //======================================================================= MAT2d_CutCurve::MAT2d_CutCurve(const Handle(Geom2d_Curve)& C) { Perform (C); } //======================================================================= //function : Perform //purpose : //======================================================================= void MAT2d_CutCurve::Perform(const Handle(Geom2d_Curve)& C) { theCurves.Clear(); Geom2dLProp_CurAndInf2d Sommets; Handle(Geom2d_TrimmedCurve) TrimC; Standard_Real UF,UL,UC; gp_Pnt2d PF,PL,PC; Standard_Real PTol = Precision::PConfusion()*10; Standard_Real Tol = Precision::Confusion()*10; Standard_Boolean YaCut = Standard_False; Sommets.Perform (C); if (Sommets.IsDone() && !Sommets.IsEmpty()) { UF = C->FirstParameter(); UL = C->LastParameter (); PF = C->Value(UF); PL = C->Value(UL); for (Standard_Integer i = 1; i <= Sommets.NbPoints(); i++) { UC = Sommets.Parameter(i); PC = C->Value(UC); if (UC - UF > PTol && PC.Distance(PF) > Tol) { if ( UL - UC < PTol || PL.Distance(PC) < Tol) { break; } TrimC = new Geom2d_TrimmedCurve(C,UF,UC); theCurves.Append(TrimC); UF = UC; PF = PC; YaCut = Standard_True; } } if (YaCut) { TrimC = new Geom2d_TrimmedCurve(C,UF,UL); theCurves.Append(TrimC); } } } //======================================================================= //function : UnModified //purpose : //======================================================================= Standard_Boolean MAT2d_CutCurve::UnModified() const { return theCurves.IsEmpty(); } //======================================================================= //function : NbCurves //purpose : //======================================================================= Standard_Integer MAT2d_CutCurve::NbCurves() const { if (UnModified()) {Standard_OutOfRange::Raise();} return theCurves.Length(); } //======================================================================= //function : Value //purpose : //======================================================================= Handle(Geom2d_TrimmedCurve) MAT2d_CutCurve::Value ( const Standard_Integer Index) const { if (UnModified()) {Standard_OutOfRange::Raise();} if ( Index < 1 || Index > theCurves.Length()) { Standard_OutOfRange::Raise(); } return Handle(Geom2d_TrimmedCurve)::DownCast(theCurves.Value(Index)); }