X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_ShapeTools.cpp;h=de201f61c10e071b8c92d7f475d13483bd123061;hb=84557d24d6c6b48998f319ffe3e16171bd89e0ab;hp=3a4f577ac27be670f7974e4f6a8d88c477b5c35f;hpb=506a83727ca8f8297fc1dcdf4ea40d7865c35450;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_ShapeTools.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_ShapeTools.cpp index 3a4f577ac..de201f61c 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_ShapeTools.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_ShapeTools.cpp @@ -10,13 +10,19 @@ #include +#include #include +#include #include #include #include #include #include +#include +#include #include +#include +#include #include #include #include @@ -28,7 +34,7 @@ //================================================================================================= -double GeomAlgoAPI_ShapeTools::volume(std::shared_ptr theShape) +double GeomAlgoAPI_ShapeTools::volume(const std::shared_ptr theShape) { GProp_GProps aGProps; if(!theShape) { @@ -43,7 +49,7 @@ double GeomAlgoAPI_ShapeTools::volume(std::shared_ptr theShape) } //================================================================================================= -std::shared_ptr GeomAlgoAPI_ShapeTools::centreOfMass(std::shared_ptr theShape) +std::shared_ptr GeomAlgoAPI_ShapeTools::centreOfMass(const std::shared_ptr theShape) { GProp_GProps aGProps; if(!theShape) { @@ -175,7 +181,41 @@ void GeomAlgoAPI_ShapeTools::combineShapes(const std::shared_ptr } //================================================================================================= -std::shared_ptr GeomAlgoAPI_ShapeTools::faceToInfinitePlane(const std::shared_ptr& theFace) +std::list > GeomAlgoAPI_ShapeTools::getBoundingBox(const ListOfShape& theShapes, const double theEnlarge) +{ + // Bounding box of all objects. + Bnd_Box aBndBox; + + // Getting box. + for (ListOfShape::const_iterator anObjectsIt = theShapes.begin(); anObjectsIt != theShapes.end(); anObjectsIt++) { + const TopoDS_Shape& aShape = (*anObjectsIt)->impl(); + BRepBndLib::Add(aShape, aBndBox); + } + + if(theEnlarge != 0.0) { + // We enlarge bounding box just to be sure that plane will be large enough to cut all objects. + aBndBox.Enlarge(theEnlarge); + } + + Standard_Real aXArr[2] = {aBndBox.CornerMin().X(), aBndBox.CornerMax().X()}; + Standard_Real aYArr[2] = {aBndBox.CornerMin().Y(), aBndBox.CornerMax().Y()}; + Standard_Real aZArr[2] = {aBndBox.CornerMin().Z(), aBndBox.CornerMax().Z()}; + std::list > aResultPoints; + int aNum = 0; + for(int i = 0; i < 2; i++) { + for(int j = 0; j < 2; j++) { + for(int k = 0; k < 2; k++) { + std::shared_ptr aPnt(new GeomAPI_Pnt(aXArr[i], aYArr[j], aZArr[k])); + aResultPoints.push_back(aPnt); + } + } + } + + return aResultPoints; +} + +//================================================================================================= +std::shared_ptr GeomAlgoAPI_ShapeTools::faceToInfinitePlane(const std::shared_ptr theFace) { if (!theFace.get()) return std::shared_ptr(); @@ -195,3 +235,56 @@ std::shared_ptr GeomAlgoAPI_ShapeTools::faceToInfinitePlane(const aResult->setImpl(new TopoDS_Shape(anInfiniteFace)); return aResult; } + +//================================================================================================= +std::shared_ptr GeomAlgoAPI_ShapeTools::fitPlaneToBox(const std::shared_ptr thePlane, + const std::list >& thePoints) +{ + std::shared_ptr aResultShape; + + if(!thePlane.get()) { + return aResultShape; + } + + const TopoDS_Shape& aShape = thePlane->impl(); + if(aShape.ShapeType() != TopAbs_FACE) { + return aResultShape; + } + + TopoDS_Face aFace = TopoDS::Face(aShape); + Handle(Geom_Surface) aSurf = BRep_Tool::Surface(aFace); + if(aSurf.IsNull()) { + return aResultShape; + } + + GeomLib_IsPlanarSurface isPlanar(aSurf); + if(!isPlanar.IsPlanar()) { + return aResultShape; + } + + if(thePoints.size() != 8) { + return aResultShape; + } + + const gp_Pln& aFacePln = isPlanar.Plan(); + Handle(Geom_Plane) aFacePlane = new Geom_Plane(aFacePln); + IntAna_Quadric aQuadric(aFacePln); + Standard_Real UMin, UMax, VMin, VMax; + UMin = UMax = VMin = VMax = 0; + for (std::list >::const_iterator aPointsIt = thePoints.begin(); aPointsIt != thePoints.end(); aPointsIt++) { + const gp_Pnt& aPnt = (*aPointsIt)->impl(); + gp_Lin aLin(aPnt, aFacePln.Axis().Direction()); + IntAna_IntConicQuad anIntAna(aLin, aQuadric); + const gp_Pnt& aPntOnFace = anIntAna.Point(1); + Standard_Real aPntU(0), aPntV(0); + GeomLib_Tool::Parameters(aFacePlane, aPntOnFace, Precision::Confusion(), aPntU, aPntV); + if(aPntU < UMin) UMin = aPntU; + if(aPntU > UMax) UMax = aPntU; + if(aPntV < VMin) VMin = aPntV; + if(aPntV > VMax) VMax = aPntV; + } + aResultShape.reset(new GeomAPI_Shape); + aResultShape->setImpl(new TopoDS_Shape(BRepLib_MakeFace(aFacePln, UMin, UMax, VMin, VMax).Face())); + + return aResultShape; +}