ListOfShape aFacesList;
AttributeSelectionListPtr aFacesSelectionList = selectionList(LIST_ID());
for(int anIndex = 0; anIndex < aFacesSelectionList->size(); anIndex++) {
- std::shared_ptr<ModelAPI_AttributeSelection> aFaceSel = aFacesSelectionList->value(anIndex);
- ResultPtr aContext = aFaceSel->context();
- std::shared_ptr<GeomAPI_Shape> aContextShape = aContext->shape();
- if(!aContextShape.get()) {
- static const std::string aContextError = "The selection context is bad";
- setError(aContextError);
- break;
- }
-
+ AttributeSelectionPtr aFaceSel = aFacesSelectionList->value(anIndex);
std::shared_ptr<GeomAPI_Shape> aFaceShape = aFaceSel->value();
- int aFacesNum = -1; // this mean that "aFace" is used
- ResultConstructionPtr aConstruction =
- std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aContext);
- if(!aFaceShape.get()) { // this may be the whole sketch result selected, check and get faces
- if (aConstruction.get()) {
- aFacesNum = aConstruction->facesNum();
- } else {
+ if(aFaceShape.get() && !aFaceShape->isNull()) { // Getting face.
+ 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();
+ if(!aContextShape.get()) {
+ static const std::string aContextError = "The selection context is bad";
+ setError(aContextError);
+ return;
+ }
+ ResultConstructionPtr aConstruction = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aContext);
+ if(!aConstruction.get()) {
static const std::string aFaceError = "Can not find basis for extrusion";
setError(aFaceError);
- break;
+ return;
}
- }
- for(int aFaceIndex = 0; aFaceIndex < aFacesNum || aFacesNum == -1; aFaceIndex++) {
- std::shared_ptr<GeomAPI_Shape> aBaseShape;
- if (aFacesNum == -1) {
- if (!aFaceShape->isNull()) {
- aFacesList.push_back(aFaceShape);
- }
- break;
- } else {
+ 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);
}
ListOfShape aFacesList;
AttributeSelectionListPtr aFacesSelectionList = selectionList(LIST_ID());
for(int anIndex = 0; anIndex < aFacesSelectionList->size(); anIndex++) {
- std::shared_ptr<ModelAPI_AttributeSelection> aFaceSel = aFacesSelectionList->value(anIndex);
- ResultPtr aContext = aFaceSel->context();
- std::shared_ptr<GeomAPI_Shape> aContextShape = aContext->shape();
- if(!aContextShape.get()) {
- static const std::string aContextError = "The selection context is bad";
- setError(aContextError);
- break;
- }
-
+ AttributeSelectionPtr aFaceSel = aFacesSelectionList->value(anIndex);
std::shared_ptr<GeomAPI_Shape> aFaceShape = aFaceSel->value();
- int aFacesNum = -1; // this mean that "aFace" is used
- ResultConstructionPtr aConstruction =
- std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aContext);
- if(!aFaceShape.get()) { // this may be the whole sketch result selected, check and get faces
- if (aConstruction.get()) {
- aFacesNum = aConstruction->facesNum();
- } else {
+ if(aFaceShape.get() && !aFaceShape->isNull()) { // Getting face.
+ 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();
+ if(!aContextShape.get()) {
+ static const std::string aContextError = "The selection context is bad";
+ setError(aContextError);
+ return;
+ }
+ ResultConstructionPtr aConstruction = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aContext);
+ if(!aConstruction.get()) {
static const std::string aFaceError = "Can not find basis for revolution";
setError(aFaceError);
- break;
+ return;
}
- }
- for(int aFaceIndex = 0; aFaceIndex < aFacesNum || aFacesNum == -1; aFaceIndex++) {
- std::shared_ptr<GeomAPI_Shape> aBaseShape;
- if (aFacesNum == -1) {
- aFacesList.push_back(aFaceShape);
- break;
- } else {
+ 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);
}
</groupbox>
</box>
</toolbox>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,base,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
</source>
concealment="true">
<validator id="GeomValidators_ShapeType" parameters="solid"/>
</multi_selector>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,sketch_selection,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
</source>
concealment="true">
<validator id="GeomValidators_ShapeType" parameters="solid"/>
</multi_selector>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,sketch_selection,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
</source>
</box>
</toolbox>
</groupbox>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,BySizes,sketch_selection,to_size,from_size,to_object,to_offset,from_object,from_offset"/>
</source>
</groupbox>
</box>
</toolbox>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,base,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
</source>
\ No newline at end of file
concealment="true">
<validator id="GeomValidators_ShapeType" parameters="solid"/>
</multi_selector>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,sketch_selection,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
</source>
concealment="true">
<validator id="GeomValidators_ShapeType" parameters="solid"/>
</multi_selector>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,sketch_selection,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
</source>
</box>
</toolbox>
</groupbox>
- <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
+ <validator id="GeomValidators_ZeroOffset" parameters="CreationMethod,ByAngles,sketch_selection,to_angle,from_angle,to_object,to_offset,from_object,from_offset"/>
</source>
{
impl<gp_Pln>().Coefficients(theA, theB, theC, theD);
}
+
+bool GeomAPI_Pln::isCoincident(const std::shared_ptr<GeomAPI_Pln> thePlane, const double theTolerance)
+{
+ if(!thePlane.get()) {
+ return false;
+ }
+
+ const gp_Pln& aMyPln = impl<gp_Pln>();
+ const gp_Pln& anOtherPln = thePlane->impl<gp_Pln>();
+ return (aMyPln.Contains(anOtherPln.Location(), theTolerance) && aMyPln.Axis().IsParallel(anOtherPln.Axis(), theTolerance));
+}
/// Returns the plane coefficients (Ax+By+Cz+D=0)
GEOMAPI_EXPORT
void coefficients(double& theA, double& theB, double& theC, double& theD);
+
+ /// Returns true if planes are coincident.
+ GEOMAPI_EXPORT
+ bool isCoincident(const std::shared_ptr<GeomAPI_Pln> thePlane, const double theTolerance = 1.e-7);
};
#endif
#include <GeomValidators_ZeroOffset.h>
-#include <GeomAPI_Shape.h>
#include <ModelAPI_AttributeDouble.h>
#include <ModelAPI_AttributeSelection.h>
+#include <ModelAPI_AttributeSelectionList.h>
#include <ModelAPI_AttributeString.h>
+#include <ModelAPI_ResultConstruction.h>
+
+#include <GeomAPI_Dir.h>
+#include <GeomAPI_Face.h>
+#include <GeomAPI_Shape.h>
+#include <GeomAPI_Pln.h>
+#include <GeomAPI_Pnt.h>
//=================================================================================================
bool GeomValidators_ZeroOffset::isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
const std::list<std::string>& theArguments,
std::string& theError) const
{
- if(theArguments.size() != 8) {
- theError = "Wrong number of arguments (expected 8).";
+ if(theArguments.size() != 9) {
+ theError = "Wrong number of validator arguments in xml(expected 9).";
return false;
}
anIt++;
std::string aCreationMethod = *anIt;
anIt++;
-
+
+ ListOfShape aFacesList;
+ if(theFeature->selection(*anIt)) {
+ AttributeSelectionPtr aFaceSelection = theFeature->selection(*anIt);
+ ResultConstructionPtr aConstruction = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aFaceSelection->context());
+ if(aConstruction.get()) {
+ 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);
+ }
+ }
+ } else if(theFeature->selectionList(*anIt)) {
+ AttributeSelectionListPtr aFacesSelectionList = theFeature->selectionList(*anIt);
+ for(int anIndex = 0; anIndex < aFacesSelectionList->size(); anIndex++) {
+ AttributeSelectionPtr aFaceSel = aFacesSelectionList->value(anIndex);
+ std::shared_ptr<GeomAPI_Shape> aFaceShape = aFaceSel->value();
+ if(aFaceShape.get() && !aFaceShape->isNull()) { // Getting face.
+ 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();
+ if(!aContextShape.get()) {
+ break;
+ }
+ ResultConstructionPtr aConstruction = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aContext);
+ if(!aConstruction.get()) {
+ break;
+ }
+ 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);
+ }
+ }
+ }
+ }
+ anIt++;
+
double aToSize = 0.0;
double aFromSize = 0.0;
aFromSize = anAttrDouble->value();
}
- if(((!aFromShape && !aToShape) || ((aFromShape && aToShape) && aFromShape->isEqual(aToShape)))
- && (aFromSize == -aToSize)) {
- theError = "FromSize = -ToSize and bounding planes are equal.";
+ bool isPlanesCoincident = false;
+ if(!aFromShape.get() && !aToShape.get()) {
+ isPlanesCoincident = true;
+ } else if(aFromShape.get() && aToShape.get()) {
+ std::shared_ptr<GeomAPI_Face> aFromFace(new GeomAPI_Face(aFromShape));
+ std::shared_ptr<GeomAPI_Pln> aFromPln = aFromFace->getPlane();
+
+ std::shared_ptr<GeomAPI_Face> aToFace(new GeomAPI_Face(aToShape));
+ std::shared_ptr<GeomAPI_Pln> aToPln = aToFace->getPlane();
+
+ if(aFromPln.get()) {
+ isPlanesCoincident = aFromPln->isCoincident(aToPln);
+ }
+ } else {
+ std::shared_ptr<GeomAPI_Face> aFace;
+ if(aFromShape.get()) {
+ aFace.reset(new GeomAPI_Face(aFromShape));
+ } else {
+ aFace.reset(new GeomAPI_Face(aToShape));
+ }
+ std::shared_ptr<GeomAPI_Pln> aPln = aFace->getPlane();
+ if(aPln.get()) {
+ for(ListOfShape::const_iterator anIter = aFacesList.cbegin(); anIter != aFacesList.cend(); anIter++) {
+ std::shared_ptr<GeomAPI_Shape> aSketchShape = *anIter;
+ std::shared_ptr<GeomAPI_Face> aSketchFace(new GeomAPI_Face(aSketchShape));
+ std::shared_ptr<GeomAPI_Pln> aSketchPln = aSketchFace->getPlane();
+ if(aPln->isCoincident(aSketchPln)) {
+ isPlanesCoincident = true;
+ break;
+ }
+ }
+ }
+ }
+
+ if(isPlanesCoincident && aFromSize == -aToSize) {
+ theError = "FromSize = -ToSize and bounding planes are coincident.";
return false;
}