Salome HOME
Union of validator and filter functionalities.
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_HVDirection.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_HVDirection.cpp
4 // Created:     16 February 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "SketcherPrs_HVDirection.h"
8 #include "SketcherPrs_Tools.h"
9 #include "SketcherPrs_PositionMgr.h"
10
11 #include <SketchPlugin_Constraint.h>
12
13 #include <Graphic3d_AspectLine3d.hxx>
14 #include <Prs3d_Root.hxx>
15
16
17
18 IMPLEMENT_STANDARD_HANDLE(SketcherPrs_HVDirection, SketcherPrs_SymbolPrs);
19 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_HVDirection, SketcherPrs_SymbolPrs);
20
21 static Handle(Image_AlienPixMap) MyPixMap;
22
23 SketcherPrs_HVDirection::SketcherPrs_HVDirection(SketchPlugin_Constraint* theConstraint, 
24                                            const std::shared_ptr<GeomAPI_Ax3>& thePlane,
25                                            bool isHorisontal) 
26  : SketcherPrs_SymbolPrs(theConstraint, thePlane), myIsHorisontal(isHorisontal)
27 {
28   myPntArray = new Graphic3d_ArrayOfPoints(1);
29   myPntArray->AddVertex(0., 0., 0.);
30 }  
31
32 void SketcherPrs_HVDirection::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
33                                    const Handle(Prs3d_Presentation)& thePresentation, 
34                                    const Standard_Integer theMode)
35 {
36   prepareAspect();
37
38   ObjectPtr aObj1 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
39   std::shared_ptr<GeomAPI_Shape> aLine1 = SketcherPrs_Tools::getShape(aObj1);
40   if (aLine1.get() == NULL)
41     return;
42
43   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
44   gp_Pnt aP1 = aMgr->getPosition(aObj1, this);
45
46   Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePresentation);
47   aGroup->SetPrimitivesAspect(myAspect);
48   myPntArray->SetVertice(1, aP1);
49   aGroup->AddPrimitiveArray(myPntArray);
50 }
51
52 void SketcherPrs_HVDirection::drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const
53 {
54   Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup(thePrs);
55
56   Handle(Graphic3d_AspectLine3d) aLineAspect = new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
57   aGroup->SetPrimitivesAspect(aLineAspect);
58
59   addLine(aGroup, SketchPlugin_Constraint::ENTITY_A());
60 }
61