// 2. if the planes were displayed, change the view projection
const GeomShapePtr& aShape = thePrs->shape();
std::shared_ptr<GeomAPI_Shape> aGShape;
- std::shared_ptr<GeomAPI_Shape> aBaseShape;
DataPtr aData = feature()->data();
AttributeSelectionPtr aSelAttr = std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
// selection happens in OCC viewer
if (aShape.get() && !aShape->isNull()) {
aGShape = aShape;
-
- if (aSelAttr && aSelAttr->context()) {
- aBaseShape = aSelAttr->context()->shape();
- }
}
else { // selection happens in OCC viewer(on body) of in the OB browser
if (aSelAttr) {
aGShape = aSelAttr->value();
}
}
+ // If the selected object is a sketch then use its plane
+ std::shared_ptr<GeomAPI_Pln> aPlane;
+ ObjectPtr aObj = thePrs->object();
+ if (aObj.get()) {
+ FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
+ if (aFeature.get() && (aFeature != feature())) {
+ if (aFeature->getKind() == SketchPlugin_Sketch::ID()) {
+ CompositeFeaturePtr aSketch =
+ std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
+ aPlane = PartSet_Tools::sketchPlane(aSketch);
+ }
+ }
+ }
if (aGShape.get() != NULL) {
// get plane parameters
- std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aGShape));
- std::shared_ptr<GeomAPI_Pln> aPlane = aFace->getPlane();
+ if (!aPlane.get()) {
+ std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aGShape));
+ aPlane = aFace->getPlane();
+ }
+ if (!aPlane.get())
+ return;
std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
gp_XYZ aXYZ = aDir->impl<gp_Dir>().XYZ();
double aTwist = 0.0;
bool PartSet_WidgetSketchLabel::setSelectionCustom(const ModuleBase_ViewerPrsPtr& thePrs)
{
- return fillSketchPlaneBySelection(feature(), thePrs);
+ return fillSketchPlaneBySelection(thePrs);
}
bool PartSet_WidgetSketchLabel::canFillSketch(const ModuleBase_ViewerPrsPtr& thePrs)
return aCanFillSketch;
}
-bool PartSet_WidgetSketchLabel::fillSketchPlaneBySelection(const FeaturePtr& theFeature,
- const ModuleBase_ViewerPrsPtr& thePrs)
+bool PartSet_WidgetSketchLabel::fillSketchPlaneBySelection(const ModuleBase_ViewerPrsPtr& thePrs)
{
bool isOwnerSet = false;
const GeomShapePtr& aShape = thePrs->shape();
std::shared_ptr<GeomAPI_Dir> aDir;
- if (thePrs->object() && (theFeature != thePrs->object())) {
- DataPtr aData = theFeature->data();
+ if (thePrs->object() && (feature() != thePrs->object())) {
+ FeaturePtr aFeature = ModelAPI_Feature::feature(thePrs->object());
+ if (aFeature.get() && (aFeature != feature())) {
+ if (aFeature->getKind() == SketchPlugin_Sketch::ID()) {
+ CompositeFeaturePtr aSketch =
+ std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
+ std::shared_ptr<GeomAPI_Pln> aPlane = PartSet_Tools::sketchPlane(aSketch);
+ if (aPlane.get()) {
+ aDir = setSketchPlane(aPlane);
+ return aDir.get();
+ }
+ }
+ }
+ DataPtr aData = feature()->data();
AttributeSelectionPtr aSelAttr =
std::dynamic_pointer_cast<ModelAPI_AttributeSelection>
(aData->attribute(SketchPlugin_SketchEntity::EXTERNAL_ID()));
}
else if (aShape.get() && !aShape->isNull()) {
const TopoDS_Shape& aTDShape = aShape->impl<TopoDS_Shape>();
- aDir = setSketchPlane(theFeature, aTDShape);
+ aDir = setSketchPlane(aTDShape);
isOwnerSet = aDir.get();
}
return isOwnerSet;
activateSelection(true);
- //myLabel->setText(myText);
- //myLabel->setToolTip(myTooltip);
-
connect(XGUI_Tools::workshop(myWorkshop)->selector(), SIGNAL(selectionChanged()),
this, SLOT(onSelectionChanged()));
activateFilters(true);
}
-std::shared_ptr<GeomAPI_Dir> PartSet_WidgetSketchLabel::setSketchPlane(const FeaturePtr& theFeature,
- const TopoDS_Shape& theShape)
+std::shared_ptr<GeomAPI_Dir>
+ PartSet_WidgetSketchLabel::setSketchPlane(const TopoDS_Shape& theShape)
{
if (theShape.IsNull())
return std::shared_ptr<GeomAPI_Dir>();
std::shared_ptr<GeomAPI_Shape> aGShape(new GeomAPI_Shape);
aGShape->setImpl(new TopoDS_Shape(theShape));
-
-
// get plane parameters
std::shared_ptr<GeomAPI_Face> aFace(new GeomAPI_Face(aGShape));
std::shared_ptr<GeomAPI_Pln> aPlane = aFace->getPlane();
if (!aPlane.get())
return std::shared_ptr<GeomAPI_Dir>();
+ return setSketchPlane(aPlane);
+}
+std::shared_ptr<GeomAPI_Dir>
+ PartSet_WidgetSketchLabel::setSketchPlane(std::shared_ptr<GeomAPI_Pln> thePlane)
+{
// set plane parameters to feature
- std::shared_ptr<ModelAPI_Data> aData = theFeature->data();
+ std::shared_ptr<ModelAPI_Data> aData = feature()->data();
double anA, aB, aC, aD;
- aPlane->coefficients(anA, aB, aC, aD);
+ thePlane->coefficients(anA, aB, aC, aD);
// calculate attributes of the sketch
std::shared_ptr<GeomAPI_Dir> aNormDir(new GeomAPI_Dir(anA, aB, aC));
std::shared_ptr<GeomDataAPI_Dir> aDirX = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
aData->attribute(SketchPlugin_Sketch::DIRX_ID()));
aDirX->setValue(aXDir);
- std::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
+ std::shared_ptr<GeomAPI_Dir> aDir = thePlane->direction();
return aDir;
}
/// \param thePrs a presentation
static bool canFillSketch(const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs);
- /// Set sketch plane from selected object
- /// \param theFeature a feature of sketch
- /// \param thePrs a presentation
- static bool fillSketchPlaneBySelection(const FeaturePtr& theFeature,
- const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs);
-
signals:
/// Signal on plane selection
void planeSelected(const std::shared_ptr<GeomAPI_Pln>& thePln);
/// \param thePrs a selected presentation
void updateByPlaneSelected(const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs);
+ /// Set sketch plane from selected object
+ /// \param theFeature a feature of sketch
+ /// \param thePrs a presentation
+ bool fillSketchPlaneBySelection(const std::shared_ptr<ModuleBase_ViewerPrs>& thePrs);
+
protected:
/// Activate or deactivate selection
void activateSelection(bool toActivate);
private:
/// Set sketch plane by shape
/// \param theShape a planar face
- static std::shared_ptr<GeomAPI_Dir> setSketchPlane(const FeaturePtr& theFeature,
- const TopoDS_Shape& theShape);
+ std::shared_ptr<GeomAPI_Dir> setSketchPlane(const TopoDS_Shape& theShape);
+ /// Set sketch plane
+ /// \param thePlane a plane
+ std::shared_ptr<GeomAPI_Dir> setSketchPlane(std::shared_ptr<GeomAPI_Pln> thePlane);
private:
/// class to show/hide preview planes