From: vsv Date: Thu, 6 Sep 2018 12:43:53 +0000 (+0300) Subject: Use yellow star as an internal symbol for coincidence with an edge. X-Git-Tag: V9_2_0a1~53 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=0be821d714cfead1befe97468b16817da05c8456;p=modules%2Fshaper.git Use yellow star as an internal symbol for coincidence with an edge. --- diff --git a/src/SketcherPrs/SketcherPrs_Coincident.cpp b/src/SketcherPrs/SketcherPrs_Coincident.cpp index 684065e0a..d5c13571e 100644 --- a/src/SketcherPrs/SketcherPrs_Coincident.cpp +++ b/src/SketcherPrs/SketcherPrs_Coincident.cpp @@ -156,7 +156,7 @@ void SketcherPrs_Coincident::Compute( // Make a black mid ring aPtA = new Graphic3d_AspectMarker3d(); - aPtA->SetType(Aspect_TOM_RING1); + aPtA->SetType(aIsEdge ? Aspect_TOM_STAR : Aspect_TOM_RING1); aPtA->SetScale(1.); aPtA->SetColor(!aCustomColor ? aInternalColor : myCustomColor); aGroup->SetPrimitivesAspect(aPtA);