// File: BRepTest_ExtremaCommands.cxx // Created: Fri Sep 8 11:37:46 1995 // Author: Modelistation // // // modified by mps (juillet 96) : ajout de la commande distmini #include #include #include #include #include #include #include #include #include #include #include #include //#ifdef WNT #include //#endif //======================================================================= //function : distance //purpose : //======================================================================= static Standard_Integer distance (Draw_Interpretor& di, Standard_Integer n, const char** a) { if (n < 3) return 1; const char *name1 = a[1]; const char *name2 = a[2]; TopoDS_Shape S1 = DBRep::Get(name1); TopoDS_Shape S2 = DBRep::Get(name2); if (S1.IsNull() || S2.IsNull()) return 1; gp_Pnt P1,P2; Standard_Real D; if (!BRepExtrema_Poly::Distance(S1,S2,P1,P2,D)) return 1; //cout << " distance : " << D << endl; di << " distance : " << D << "\n"; TopoDS_Edge E = (TopoDS_Edge) BRepLib_MakeEdge(P1,P2); DBRep::Set("distance",E); return 0; } static Standard_Integer distmini(Draw_Interpretor& di, Standard_Integer n, const char** a) { Standard_Integer i1; // gp_Pnt P; if (n != 4) return 1; const char *ns1 = (a[2]), *ns2 = (a[3]), *ns0 = (a[1]); TopoDS_Shape S1(DBRep::Get(ns1)), S2(DBRep::Get(ns2)) ; BRepExtrema_DistShapeShape dst(S1 ,S2 ); if (dst.IsDone()) { #ifdef DEB //dst.Dump(cout); Standard_SStream aSStream; dst.Dump(aSStream); di << aSStream; #endif char named[100]; sprintf(named, "%s%s" ,ns0,"_val"); char* tempd = named; Draw::Set(tempd,dst.Value()); di << named << " "; for (i1=1; i1<= dst.NbSolution(); i1++) { gp_Pnt P1,P2; P1 = (dst.PointOnShape1(i1)); P2 = (dst.PointOnShape2(i1)); if (dst.Value()<=1.e-9) { TopoDS_Vertex V = (TopoDS_Vertex) BRepLib_MakeVertex(P1); char namev[100]; if (i1==1) sprintf(namev, "%s" ,ns0); else sprintf(namev, "%s%d" ,ns0,i1); char* tempv = namev; DBRep::Set(tempv,V); di << namev << " "; } else {char name[100]; TopoDS_Edge E = (TopoDS_Edge) BRepLib_MakeEdge (P1, P2); if (i1==1) {sprintf(name,"%s",ns0);} else {sprintf(name,"%s%d",ns0,i1);} char* temp = name; DBRep::Set(temp,E); di << name << " " ; } } } else di << "probleme"<< "\n"; //else cout << "probleme"<< endl; return 0; } //======================================================================= //function : ExtremaCommands //purpose : //======================================================================= void BRepTest::ExtremaCommands(Draw_Interpretor& theCommands) { static Standard_Boolean done = Standard_False; if (done) return; done = Standard_True; const char* g = "TOPOLOGY Extrema commands"; theCommands.Add("dist","dist Shape1 Shape2" ,__FILE__,distance,g); theCommands.Add("distmini", "distmini name Shape1 Shape2", __FILE__, distmini,g); }