AttributeSelectionPtr aSelectionAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
(theAttribute);
std::shared_ptr<GeomAPI_Shape> aGeomShape = aSelectionAttr->value();
- std::shared_ptr<GeomAPI_Face> aGeomFace(new GeomAPI_Face(aGeomShape));
- if (aGeomFace.get() != NULL) {
- switch(aFaceType) {
- case GeomAbs_Plane:
- aValid = aGeomFace->isPlanar();
- break;
- case GeomAbs_Cylinder:
- break;
- default:
- break;
+ // it is necessary to check whether the shape is face in order to set in selection a value
+ // with any type and check the type in this validator
+ // It is realized to select any object in OB and filter it in this validator (sketch plane)
+ if (aGeomShape->isFace()) {
+ std::shared_ptr<GeomAPI_Face> aGeomFace(new GeomAPI_Face(aGeomShape));
+ if (aGeomFace.get() != NULL) {
+ switch(aFaceType) {
+ case GeomAbs_Plane:
+ aValid = aGeomFace->isPlanar();
+ break;
+ case GeomAbs_Cylinder:
+ break;
+ default:
+ break;
+ }
}
}
}
if (aPrs.isEmpty())
return;
- if (isValidSelection(aPrs)) {
- // 2. set the selection to sketch
- setSelectionCustom(aPrs);
- // 3. hide main planes if they have been displayed
- erasePreviewPlanes();
- // 4. if the planes were displayed, change the view projection
- TopoDS_Shape aShape = aPrs.shape();
- if (!aShape.IsNull()) {
- DataPtr aData = feature()->data();
- AttributeSelectionPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
- (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
- if (aSelAttr) {
- GeomShapePtr aShapePtr = aSelAttr->value();
- if (aShapePtr.get() == NULL || aShapePtr->isNull()) {
- //TopoDS_Shape aShape = aShapePtr->impl<TopoDS_Shape>();
- std::shared_ptr<GeomAPI_Shape> aGShape(new GeomAPI_Shape);
- aGShape->setImpl(new TopoDS_Shape(aShape));
- // get plane parameters
- std::shared_ptr<GeomAPI_Pln> aPlane = GeomAlgoAPI_FaceBuilder::plane(aGShape);
- std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
-
- myWorkshop->viewer()->setViewProjection(aDir->x(), aDir->y(), aDir->z());
- }
- }
+ if (!isValidSelection(aPrs))
+ return;
+
+ // 2. set the selection to sketch
+ setSelectionCustom(aPrs);
+ // 3. hide main planes if they have been displayed
+ erasePreviewPlanes();
+ // 4. if the planes were displayed, change the view projection
+ TopoDS_Shape aShape = aPrs.shape();
+ std::shared_ptr<GeomAPI_Shape> aGShape;
+ // selection happens in OCC viewer
+ if (!aShape.IsNull()) {
+ aGShape = std::shared_ptr<GeomAPI_Shape>(new GeomAPI_Shape);
+ aGShape->setImpl(new TopoDS_Shape(aShape));
+ }
+ else { // selection happens in OCC viewer(on body) of in the OB browser
+ DataPtr aData = feature()->data();
+ AttributeSelectionPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
+ (aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
+ if (aSelAttr) {
+ aGShape = aSelAttr->value();
}
}
+ if (aGShape.get() != NULL) {
+ // get plane parameters
+ std::shared_ptr<GeomAPI_Pln> aPlane = GeomAlgoAPI_FaceBuilder::plane(aGShape);
+ std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
+
+ myWorkshop->viewer()->setViewProjection(aDir->x(), aDir->y(), aDir->z());
+ }
// 5. Clear text in the label
myLabel->setText("");
myLabel->setToolTip("");
ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(thePrs.object());
if (aRes) {
GeomShapePtr aShapePtr(new GeomAPI_Shape());
- if (aShape.IsNull()) {
+ if (aShape.IsNull()) { // selection happens in the OCC viewer
aShapePtr = ModelAPI_Tools::shape(aRes);
}
- else {
+ else { // selection happens in OB browser
aShapePtr->setImpl(new TopoDS_Shape(aShape));
}
- aSelAttr->setValue(aRes, aShapePtr);
- isOwnerSet = true;
+ if (aShapePtr.get() != NULL) {
+ aSelAttr->setValue(aRes, aShapePtr);
+ isOwnerSet = true;
+ }
}
}
}