1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: SketcherPrs_Equal.cpp
4 // Created: 16 February 2015
5 // Author: Vitaly SMETANNIKOV
7 #include "SketcherPrs_Equal.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_Equal, SketcherPrs_SymbolPrs);
18 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Equal, SketcherPrs_SymbolPrs);
20 static Handle(Image_AlienPixMap) MyPixMap;
22 SketcherPrs_Equal::SketcherPrs_Equal(ModelAPI_Feature* theConstraint,
23 const std::shared_ptr<GeomAPI_Ax3>& thePlane)
24 : SketcherPrs_SymbolPrs(theConstraint, thePlane)
26 myPntArray = new Graphic3d_ArrayOfPoints(2);
27 myPntArray->AddVertex(0., 0., 0.);
28 myPntArray->AddVertex(0., 0., 0.);
31 bool SketcherPrs_Equal::updatePoints(double theStep) const
33 ObjectPtr aObj1 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
34 ObjectPtr aObj2 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
35 if (SketcherPrs_Tools::getShape(aObj1).get() == NULL)
37 if (SketcherPrs_Tools::getShape(aObj2).get() == NULL)
40 // Set points of the presentation
41 SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
42 gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
43 gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
44 myPntArray->SetVertice(1, aP1);
45 myPntArray->SetVertice(2, aP2);
49 void SketcherPrs_Equal::drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const
51 Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup(thePrs);
53 Handle(Graphic3d_AspectLine3d) aLineAspect = new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
54 aGroup->SetPrimitivesAspect(aLineAspect);
57 ObjectPtr aObj = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
58 std::shared_ptr<GeomAPI_Shape> aLine = SketcherPrs_Tools::getShape(aObj);
59 if (aLine.get() == NULL)
61 drawShape(aLine, thePrs);
64 aObj = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
65 aLine = SketcherPrs_Tools::getShape(aObj);
66 if (aLine.get() == NULL)
68 drawShape(aLine, thePrs);