1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: SketcherPrs_Collinear.cpp
4 // Created: 29 February 2016
5 // Author: Natalia ERMOLAEVA
7 #include "SketcherPrs_Collinear.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_Collinear, SketcherPrs_SymbolPrs);
18 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Collinear, SketcherPrs_SymbolPrs);
20 static Handle(Image_AlienPixMap) MyPixMap;
22 SketcherPrs_Collinear::SketcherPrs_Collinear(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_Collinear::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
32 const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
34 bool aReadyToDisplay = false;
37 SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
39 SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
41 aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
42 SketcherPrs_Tools::getShape(aObj2).get() != NULL;
44 return aReadyToDisplay;
47 bool SketcherPrs_Collinear::updateIfReadyToDisplay(double theStep) const
49 if (!IsReadyToDisplay(myConstraint, myPlane))
53 SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
55 SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
57 // Set points of the presentation
58 SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
59 gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
60 gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
61 myPntArray->SetVertice(1, aP1);
62 myPntArray->SetVertice(2, aP2);
66 void SketcherPrs_Collinear::drawLines(const Handle(Prs3d_Presentation)& thePrs,
67 Quantity_Color theColor) const
69 Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup(thePrs);
71 Handle(Graphic3d_AspectLine3d) aLineAspect =
72 new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
73 aGroup->SetPrimitivesAspect(aLineAspect);
75 // Draw constrained lines
76 addLine(aGroup, SketchPlugin_Constraint::ENTITY_A());
77 addLine(aGroup, SketchPlugin_Constraint::ENTITY_B());