#include <BRepBndLib.hxx>
#include <BRepBuilderAPI_FindPlane.hxx>
#include <BRepBuilderAPI_Transform.hxx>
+#include <BRepTools.hxx>
#include <Geom_Curve.hxx>
#include <Geom2d_Curve.hxx>
#include <BRepLib_CheckCurveOnSurface.hxx>
#include <TopoDS_Solid.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
-#include <BRepTools.hxx>
+#include <limits>
//=================================================================================================
GeomAlgoAPI_Prism::GeomAlgoAPI_Prism(const GeomShapePtr theBaseShape,
int aSketchFacesNum = aConstruction->facesNum();
for(int aFaceIndex = 0; aFaceIndex < aSketchFacesNum; aFaceIndex++) {
std::shared_ptr<GeomAPI_Shape> aFace = std::dynamic_pointer_cast<GeomAPI_Shape>(aConstruction->face(aFaceIndex));
- aFacesList.push_back(aFace);
+ if(aFace->isFace() && aFace->isPlanar()) {
+ aFacesList.push_back(aFace);
+ }
}
}
} else if(theFeature->selectionList(*anIt)) {
AttributeSelectionPtr aFaceSel = aFacesSelectionList->value(anIndex);
std::shared_ptr<GeomAPI_Shape> aFaceShape = aFaceSel->value();
if(aFaceShape.get() && !aFaceShape->isNull()) { // Getting face.
- aFacesList.push_back(aFaceShape);
+ if(aFaceShape->isFace() && aFaceShape->isPlanar()) {
+ aFacesList.push_back(aFaceShape);
+ }
} else { // This may be the whole sketch result selected, check and get faces.
ResultPtr aContext = aFaceSel->context();
std::shared_ptr<GeomAPI_Shape> aContextShape = aContext->shape();
int aFacesNum = aConstruction->facesNum();
for(int aFaceIndex = 0; aFaceIndex < aFacesNum || aFacesNum == -1; aFaceIndex++) {
aFaceShape = std::dynamic_pointer_cast<GeomAPI_Shape>(aConstruction->face(aFaceIndex));
- aFacesList.push_back(aFaceShape);
+ if(aFaceShape->isFace() && aFaceShape->isPlanar()) {
+ aFacesList.push_back(aFaceShape);
+ }
}
}
}