X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Coincident.cpp;h=69ece0e8709d00810999da8df422b108f0a4d21d;hb=84f912d8ca079ae8f0a43826983e77acdfb68bf5;hp=1409192b70527a58150eb844adc69f463581b076;hpb=423c10234142d14d0d5de89383f2f96a4ec5930f;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Coincident.cpp b/src/SketcherPrs/SketcherPrs_Coincident.cpp index 1409192b7..69ece0e87 100644 --- a/src/SketcherPrs/SketcherPrs_Coincident.cpp +++ b/src/SketcherPrs/SketcherPrs_Coincident.cpp @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SketcherPrs_Coincident.cpp -// Created: 12 February 2015 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #include "SketcherPrs_Coincident.h" #include "SketcherPrs_Tools.h" @@ -29,13 +43,12 @@ #include -IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject); IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Coincident, AIS_InteractiveObject); SketcherPrs_Coincident::SketcherPrs_Coincident(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane) : AIS_InteractiveObject(), myConstraint(theConstraint), mySketcherPlane(thePlane), - myPoint(gp_Pnt(0.0, 0.0, 0.0)), myIsConflicting(false) + myPoint(gp_Pnt(0.0, 0.0, 0.0)), myIsCustomColor(false) { } @@ -76,18 +89,13 @@ void SketcherPrs_Coincident::Compute( if (aReadyToDisplay) myPoint = aPoint; - // Get point of the presentation - static Handle(Graphic3d_AspectMarker3d) aPtA; - if (aPtA.IsNull()) { - aPtA = new Graphic3d_AspectMarker3d (); - } // Create the presentation as a combination of standard point markers - - bool aValid = !myIsConflicting; + bool aCustomColor = myIsCustomColor; // The external yellow contour + Handle(Graphic3d_AspectMarker3d) aPtA = new Graphic3d_AspectMarker3d(); aPtA->SetType(Aspect_TOM_RING3); aPtA->SetScale(2.); - aPtA->SetColor(aValid ? Quantity_NOC_YELLOW : myConflictingColor); + aPtA->SetColor(!aCustomColor ? Quantity_NOC_YELLOW : myCustomColor); Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePresentation); aGroup->SetPrimitivesAspect(aPtA); @@ -96,15 +104,18 @@ void SketcherPrs_Coincident::Compute( aGroup->AddPrimitiveArray (aPntArray); // Make a black mid ring + aPtA = new Graphic3d_AspectMarker3d(); aPtA->SetType(Aspect_TOM_RING1); aPtA->SetScale(1.); - aPtA->SetColor(aValid ? Quantity_NOC_BLACK : myConflictingColor); + aPtA->SetColor(!aCustomColor ? Quantity_NOC_BLACK : myCustomColor); aGroup->SetPrimitivesAspect(aPtA); aGroup->AddPrimitiveArray (aPntArray); // Make an internal ring + aPtA = new Graphic3d_AspectMarker3d(); aPtA->SetType(Aspect_TOM_POINT); aPtA->SetScale(5.); + aPtA->SetColor(!aCustomColor ? Quantity_NOC_BLACK : myCustomColor); aGroup->SetPrimitivesAspect(aPtA); aGroup->AddPrimitiveArray (aPntArray); @@ -131,10 +142,12 @@ void SketcherPrs_Coincident::SetColor(const Quantity_Color &aCol) myOwnColor=aCol; } -void SketcherPrs_Coincident::SetConflictingConstraint(const bool& theConflicting, - const std::vector& theColor) +void SketcherPrs_Coincident::SetCustomColor(const std::vector& theColor) { - myIsConflicting = theConflicting; - myConflictingColor = Quantity_Color(theColor[0] / 255., theColor[1] / 255., theColor[2] / 255., - Quantity_TOC_RGB); + myIsCustomColor = !theColor.empty(); + if (myIsCustomColor) + myCustomColor = Quantity_Color(theColor[0] / 255., theColor[1] / 255., + theColor[2] / 255., Quantity_TOC_RGB); + else + myCustomColor = Quantity_Color(); }