X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_EdgeBuilder.cpp;h=5f3aba03e7ea68dd98e4a1db09a3ab2065826e20;hb=d2c592943592ae2d6118e1881ea899df81d692dc;hp=c8419fe376853ab416221be403e4441779c9a379;hpb=1a6a9c1c0c466abb867f2c2815b20aa0620a444c;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp index c8419fe37..5f3aba03e 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp @@ -10,15 +10,68 @@ #include #include -boost::shared_ptr GeomAlgoAPI_EdgeBuilder::line( - boost::shared_ptr theStart, boost::shared_ptr theEnd) +#include +#include + +boost::shared_ptr GeomAlgoAPI_EdgeBuilder::line( + boost::shared_ptr theStart, boost::shared_ptr theEnd) { const gp_Pnt& aStart = theStart->impl(); const gp_Pnt& anEnd = theEnd->impl(); + if (aStart.IsEqual(anEnd, Precision::Confusion())) + return boost::shared_ptr(); + if (Abs(aStart.SquareDistance(anEnd)) > 1.e+100) + return boost::shared_ptr(); BRepBuilderAPI_MakeEdge anEdgeBuilder(aStart, anEnd); - boost::shared_ptr aRes(new GeomAPI_Shape); + boost::shared_ptr aRes(new GeomAPI_Edge); + TopoDS_Edge anEdge = anEdgeBuilder.Edge(); + aRes->setImpl(new TopoDS_Shape(anEdge)); + return aRes; +} + +boost::shared_ptr GeomAlgoAPI_EdgeBuilder::lineCircle( + boost::shared_ptr theCenter, boost::shared_ptr theNormal, + double theRadius) +{ + const gp_Pnt& aCenter = theCenter->impl(); + const gp_Dir& aDir = theNormal->impl(); + + gp_Circ aCircle(gp_Ax2(aCenter, aDir), theRadius); + + BRepBuilderAPI_MakeEdge anEdgeBuilder(aCircle); + boost::shared_ptr aRes(new GeomAPI_Edge); TopoDS_Edge anEdge = anEdgeBuilder.Edge(); aRes->setImpl(new TopoDS_Shape(anEdge)); return aRes; } + +boost::shared_ptr GeomAlgoAPI_EdgeBuilder::lineCircleArc( + boost::shared_ptr theCenter, boost::shared_ptr theStartPoint, + boost::shared_ptr theEndPoint, boost::shared_ptr theNormal) +{ + const gp_Pnt& aCenter = theCenter->impl(); + const gp_Dir& aDir = theNormal->impl(); + + double aRadius = theCenter->distance(theStartPoint); + gp_Circ aCircle(gp_Ax2(aCenter, aDir), aRadius); + + const gp_Pnt& aStart = theStartPoint->impl(); + const gp_Pnt& anEnd = theEndPoint->impl(); + + BRepBuilderAPI_MakeEdge anEdgeBuilder; + if (aStart.IsEqual(anEnd, Precision::Confusion()) + || gp_Pnt(0, 0, 0).IsEqual(anEnd, Precision::Confusion())) + anEdgeBuilder = BRepBuilderAPI_MakeEdge(aCircle); + else + anEdgeBuilder = BRepBuilderAPI_MakeEdge(aCircle, aStart, anEnd); + + boost::shared_ptr aRes(new GeomAPI_Edge); + anEdgeBuilder.Build(); + + if (anEdgeBuilder.IsDone()) + aRes->setImpl(new TopoDS_Shape(anEdgeBuilder.Edge())); + else + aRes = boost::shared_ptr(); + return aRes; +}