1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: SketcherPrs_HVDirection.cpp
4 // Created: 16 February 2015
5 // Author: Vitaly SMETANNIKOV
7 #include "SketcherPrs_HVDirection.h"
8 #include "SketcherPrs_Tools.h"
9 #include "SketcherPrs_PositionMgr.h"
11 #include <SketchPlugin_Constraint.h>
13 #include <Graphic3d_AspectLine3d.hxx>
14 #include <Prs3d_Root.hxx>
17 IMPLEMENT_STANDARD_HANDLE(SketcherPrs_HVDirection, SketcherPrs_SymbolPrs);
18 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_HVDirection, SketcherPrs_SymbolPrs);
20 static Handle(Image_AlienPixMap) MyPixMap;
22 SketcherPrs_HVDirection::SketcherPrs_HVDirection(ModelAPI_Feature* theConstraint,
23 const std::shared_ptr<GeomAPI_Ax3>& thePlane,
25 : SketcherPrs_SymbolPrs(theConstraint, thePlane), myIsHorisontal(isHorisontal)
29 bool SketcherPrs_HVDirection::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
30 const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
32 bool aReadyToDisplay = false;
34 SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
36 aReadyToDisplay = SketcherPrs_Tools::getShape(aObj).get() != NULL;
37 return aReadyToDisplay;
40 bool SketcherPrs_HVDirection::updateIfReadyToDisplay(double theStep) const
42 if (!IsReadyToDisplay(myConstraint, myPlane))
45 // Set point of the symbol
46 ObjectPtr aObj = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
47 SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
48 gp_Pnt aP1 = aMgr->getPosition(aObj, this, theStep);
49 myPntArray->SetVertice(1, aP1);
53 void SketcherPrs_HVDirection::drawLines(const Handle(Prs3d_Presentation)& thePrs,
54 Quantity_Color theColor) const
56 Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup(thePrs);
58 // Draw constrained object
59 Handle(Graphic3d_AspectLine3d) aLineAspect =
60 new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
61 aGroup->SetPrimitivesAspect(aLineAspect);
63 addLine(aGroup, SketchPlugin_Constraint::ENTITY_A());