X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_EdgeBuilder.cpp;h=26e90ab957e8a8950e182b1a509d00e8247a115d;hb=5c7800057bef826f4dfcd151a05b18ca5c69a08a;hp=0de55a60f36502506bd813eb21528fe3398daf64;hpb=9e884586cb9e6221e2eff8f52c227332c289130c;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp index 0de55a60f..26e90ab95 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_EdgeBuilder.cpp @@ -13,9 +13,12 @@ #include #include #include +#include #include #include +#include +#include std::shared_ptr GeomAlgoAPI_EdgeBuilder::line( std::shared_ptr theStart, std::shared_ptr theEnd) @@ -48,18 +51,61 @@ std::shared_ptr GeomAlgoAPI_EdgeBuilder::cylinderAxis( Handle(Geom_Surface) aSurf = BRep_Tool::Surface(aFace, aLoc); if (aSurf.IsNull()) return aResult; + Handle(Geom_RectangularTrimmedSurface) aTrimmed = + Handle(Geom_RectangularTrimmedSurface)::DownCast(aSurf); + if (!aTrimmed.IsNull()) + aSurf = aTrimmed->BasisSurface(); Handle(Geom_CylindricalSurface) aCyl = Handle(Geom_CylindricalSurface)::DownCast(aSurf); if (aCyl.IsNull()) return aResult; gp_Ax1 anAxis = aCyl->Axis(); + // compute the start and the end points of the resulting edge by the bounding box of the face + // (vertices projected to the axis) plus 10% + Bnd_Box aFaceBnd; + BRepBndLib::Add(aFace, aFaceBnd); + gp_Pnt aBoxMin(aFaceBnd.CornerMin()), aBoxMax(aFaceBnd.CornerMax()); + bool isFirst = true; + double aParamMin = 0, aParamMax = 0; + for(int aX = 0; aX < 2; aX++) { + for(int aY = 0; aY < 2; aY++) { + for(int aZ = 0; aZ < 2; aZ++) { + gp_XYZ aBoxVertex(aX == 0 ? aBoxMin.X() : aBoxMax.X(), + aY == 0 ? aBoxMin.Y() : aBoxMax.Y(), aZ == 0 ? aBoxMin.Z() : aBoxMax.Z()); + gp_XYZ aVec(aBoxVertex - anAxis.Location().XYZ()); + double aProjParam = aVec.Dot(anAxis.Direction().XYZ()); + if (isFirst) { + isFirst = false; + aParamMin = aProjParam; + aParamMax = aProjParam; + } else { + if (aParamMin > aProjParam) + aParamMin = aProjParam; + else if (aParamMax < aProjParam) + aParamMax = aProjParam; + } + } + } + } + // add 10% + double aDelta = aParamMax - aParamMin; + if (aDelta < 1.e-4) aDelta = 1.e-4; + aParamMin -= aDelta * 0.1; + aParamMax += aDelta * 0.1; + + gp_Pnt aStart(aParamMin * anAxis.Direction().XYZ() + anAxis.Location().XYZ()); + gp_Pnt anEnd(aParamMax * anAxis.Direction().XYZ() + anAxis.Location().XYZ()); + /* gp_Pnt aStart(anAxis.Location().Transformed(aLoc.Transformation())); // edge length is 100, "-" because cylinder of extrusion has negative direction with the cylinder gp_Pnt anEnd(anAxis.Location().XYZ() - anAxis.Direction().XYZ() * 100.); anEnd.Transform(aLoc.Transformation()); + */ BRepBuilderAPI_MakeEdge anEdgeBuilder(aStart, anEnd); std::shared_ptr aRes(new GeomAPI_Edge); TopoDS_Edge anEdge = anEdgeBuilder.Edge(); + // an axis is an infinite object + anEdge.Infinite(Standard_True); aRes->setImpl(new TopoDS_Shape(anEdge)); return aRes; } @@ -94,8 +140,7 @@ std::shared_ptr GeomAlgoAPI_EdgeBuilder::lineCircleArc( const gp_Pnt& anEnd = theEndPoint->impl(); BRepBuilderAPI_MakeEdge anEdgeBuilder; - if (aStart.IsEqual(anEnd, Precision::Confusion()) - || gp_Pnt(0, 0, 0).IsEqual(anEnd, Precision::Confusion())) + if (aStart.IsEqual(anEnd, Precision::Confusion())) anEdgeBuilder = BRepBuilderAPI_MakeEdge(aCircle); else anEdgeBuilder = BRepBuilderAPI_MakeEdge(aCircle, aStart, anEnd);