X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Coincident.cpp;h=5c011bf5c9bd3b1b9d20e3baf5015e9188198796;hb=8476d5e088f7b1b5a414fa5e33ce99d6131929eb;hp=7bd3d30ef4f347eeef10d7302de8dc3929fe1962;hpb=014d4b2f63b6f239da5259bc700e1dcbeb49897e;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Coincident.cpp b/src/SketcherPrs/SketcherPrs_Coincident.cpp index 7bd3d30ef..5c011bf5c 100644 --- a/src/SketcherPrs/SketcherPrs_Coincident.cpp +++ b/src/SketcherPrs/SketcherPrs_Coincident.cpp @@ -16,9 +16,10 @@ #include #include +#include + #include -#include #include #include #include @@ -38,19 +39,36 @@ SketcherPrs_Coincident::SketcherPrs_Coincident(ModelAPI_Feature* theConstraint, } +bool SketcherPrs_Coincident::IsReadyToDisplay(ModelAPI_Feature* theConstraint, + const std::shared_ptr&/* thePlane*/) +{ + bool aReadyToDisplay = false; + + // Get point of the presentation + std::shared_ptr aPnt = SketcherPrs_Tools::getPoint(theConstraint, + SketchPlugin_Constraint::ENTITY_A()); + if (aPnt.get() == NULL) + aPnt = SketcherPrs_Tools::getPoint(theConstraint, SketchPlugin_Constraint::ENTITY_B()); + + aReadyToDisplay = aPnt.get() != NULL; + return aReadyToDisplay; +} void SketcherPrs_Coincident::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode) { + if (!IsReadyToDisplay(myConstraint, myPlane)) { + Events_Error::throwException("An empty AIS presentation: SketcherPrs_Coincident"); + return; + } + + // Get point of the presentation std::shared_ptr aPnt = SketcherPrs_Tools::getPoint(myConstraint, SketchPlugin_Constraint::ENTITY_A()); if (aPnt.get() == NULL) aPnt = SketcherPrs_Tools::getPoint(myConstraint, SketchPlugin_Constraint::ENTITY_B()); - if (aPnt.get() == NULL) - return; - std::shared_ptr aPoint = myPlane->to3D(aPnt->x(), aPnt->y()); myPoint = aPoint->impl(); @@ -58,6 +76,9 @@ void SketcherPrs_Coincident::Compute(const Handle(PrsMgr_PresentationManager3d)& if (aPtA.IsNull()) { aPtA = new Graphic3d_AspectMarker3d (); } + // Create the presentation as a combination of standard point markers + + // The external yellow contour aPtA->SetType(Aspect_TOM_RING3); aPtA->SetScale(2.); aPtA->SetColor(Quantity_NOC_YELLOW); @@ -68,12 +89,14 @@ void SketcherPrs_Coincident::Compute(const Handle(PrsMgr_PresentationManager3d)& aPntArray->AddVertex (aPoint->x(), aPoint->y(), aPoint->z()); aGroup->AddPrimitiveArray (aPntArray); + // Make a black mid ring aPtA->SetType(Aspect_TOM_RING1); aPtA->SetScale(1.); aPtA->SetColor(Quantity_NOC_BLACK); aGroup->SetPrimitivesAspect(aPtA); aGroup->AddPrimitiveArray (aPntArray); + // Make an internal ring aPtA->SetType(Aspect_TOM_POINT); aPtA->SetScale(5.); aGroup->SetPrimitivesAspect(aPtA); @@ -84,11 +107,7 @@ void SketcherPrs_Coincident::Compute(const Handle(PrsMgr_PresentationManager3d)& void SketcherPrs_Coincident::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer aMode) { -// if ((aMode == 0) || (aMode == SketcherPrs_Tools::Sel_Constraint)) { -// Handle(SelectMgr_EntityOwner) aOwn = new SelectMgr_EntityOwner(this, 10); -// Handle(Select3D_SensitivePoint) aSp = new Select3D_SensitivePoint(aOwn, myPoint); -// aSelection->Add(aSp); -// } + // There is no selection of coincident - a point is selected instead of coincidence } void SketcherPrs_Coincident::SetColor(const Quantity_NameOfColor aCol)