// File: TopOpeBRepDS_EdgeInterferenceTool.cxx // Created: Tue Nov 8 14:52:21 1994 // Author: Jean Yves LEBEY // #include #include #include #include #include #include #include #include #include #include #ifdef DEB Standard_EXPORT Standard_Boolean TopOpeBRepDS_GettracePEI(); #endif //======================================================================= //function : TopOpeBRepDS_EdgeInterferenceTool //purpose : //======================================================================= TopOpeBRepDS_EdgeInterferenceTool::TopOpeBRepDS_EdgeInterferenceTool() { } static Standard_Real Parameter(const Handle(TopOpeBRepDS_Interference)& I) { Standard_Real p = 0; if ( I->IsKind(STANDARD_TYPE(TopOpeBRepDS_EdgeVertexInterference)) ) p = Handle(TopOpeBRepDS_EdgeVertexInterference)::DownCast(I)->Parameter(); else if ( I->IsKind(STANDARD_TYPE(TopOpeBRepDS_CurvePointInterference)) ) p = Handle(TopOpeBRepDS_CurvePointInterference)::DownCast(I)->Parameter(); else { #ifdef DEB cout<<"EdgeInterference : mauvais type d'interference"<Support(); // NYI 971219 : on ne tient pas compte de l'orientation de E = arete-mere de l'interference I if (myEdgeOrientation == TopAbs_INTERNAL || myEdgeOrientation == TopAbs_EXTERNAL) { return; } // la premiere arete orientee est gardee dans myEdgeOriented pour MAJ de // l'arete croisee dans l'interference resultat. // par = parametre sur l'arete croisee Standard_Real par = ::Parameter(I); gp_Dir T,N; Standard_Real C; TopOpeBRepTool_ShapeTool::EdgeData(E,par,T,N,C); myTool.Reset(T,N,C); } //======================================================================= //function : Add //purpose : //======================================================================= void TopOpeBRepDS_EdgeInterferenceTool::Add (const TopoDS_Shape& E, const TopoDS_Shape& V, const Handle(TopOpeBRepDS_Interference)& I) { TopAbs_Orientation Eori = E.Orientation(); if (Eori == TopAbs_INTERNAL || Eori == TopAbs_EXTERNAL) { return; } // premiere interference sur arete orientee : Init if (myEdgeOrientation == TopAbs_INTERNAL || myEdgeOrientation == TopAbs_EXTERNAL) { Init(E,I); return; } // V est un sommet de E ? Standard_Boolean VofE = Standard_False; TopoDS_Iterator it(E,Standard_False); for ( ; it.More(); it.Next() ) { const TopoDS_Shape& S = it.Value(); if ( S.IsSame(V) ) { VofE = Standard_True; break; } } #ifdef DEB if (TopOpeBRepDS_GettracePEI() && !VofE) { cout<<"===================== VofE = False"<Transition().Orientation(TopAbs_IN); TopAbs_Orientation oritan = it.Value().Orientation(); myTool.Compare(tol,T,N,C,oriloc,oritan); } //======================================================================= //function : Add //purpose : //======================================================================= void TopOpeBRepDS_EdgeInterferenceTool::Add (const TopoDS_Shape& E, // const TopOpeBRepDS_Point& P, const TopOpeBRepDS_Point& , const Handle(TopOpeBRepDS_Interference)& I) { TopAbs_Orientation Eori = E.Orientation(); if (Eori == TopAbs_INTERNAL || Eori == TopAbs_EXTERNAL) { return; } // premiere interference sur arete orientee : Init if (myEdgeOrientation == TopAbs_INTERNAL || myEdgeOrientation == TopAbs_EXTERNAL) { Init(E,I); return; } Standard_Real par = ::Parameter(I); gp_Dir T,N; Standard_Real C; Standard_Real tol = TopOpeBRepTool_ShapeTool::EdgeData(E,par,T,N,C); TopAbs_Orientation oriloc = I->Transition().Orientation(TopAbs_IN); TopAbs_Orientation oritan = TopAbs_INTERNAL; myTool.Compare(tol,T,N,C,oriloc,oritan); } //======================================================================= //function : Transition //purpose : //======================================================================= void TopOpeBRepDS_EdgeInterferenceTool::Transition (const Handle(TopOpeBRepDS_Interference)& I) const { TopOpeBRepDS_Transition& T = I->ChangeTransition(); if (myEdgeOrientation == TopAbs_INTERNAL) { T.Set(TopAbs_IN,TopAbs_IN); } else if (myEdgeOrientation == TopAbs_EXTERNAL) { T.Set(TopAbs_OUT,TopAbs_OUT); } else { I->Support(myEdgeOriented); T.Set(myTool.StateBefore(),myTool.StateAfter()); } }