Salome HOME
Merge branch 'BR_DEBIAN_RUNTIME' of newgeom:newgeom.git into Dev_1.1.0
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Coincident.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Coincident.cpp
4 // Created:     12 February 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "SketcherPrs_Coincident.h"
8 #include "SketcherPrs_Tools.h"
9
10 #include <ModelAPI_AttributeRefAttr.h>
11 #include <GeomDataAPI_Point2D.h>
12 #include <GeomDataAPI_Dir.h>
13 #include <GeomDataAPI_Point.h>
14
15 #include <GeomAPI_XYZ.h>
16 #include <GeomAPI_Dir.h>
17 #include <GeomAPI_Pnt2d.h>
18
19 #include <SketchPlugin_Constraint.h>
20
21 #include <AIS_Drawer.hxx>
22 #include <Graphic3d_AspectMarker3d.hxx>
23 #include <Graphic3d_ArrayOfPoints.hxx>
24 #include <Prs3d_PointAspect.hxx>
25 #include <Prs3d_Root.hxx>
26 #include <SelectMgr_EntityOwner.hxx>
27 #include <SelectMgr_Selection.hxx>
28 #include <Select3D_SensitivePoint.hxx>
29
30
31 IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject);
32 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Coincident, AIS_InteractiveObject);
33
34 SketcherPrs_Coincident::SketcherPrs_Coincident(ModelAPI_Feature* theConstraint, 
35                                                const std::shared_ptr<GeomAPI_Ax3>& thePlane) 
36  : AIS_InteractiveObject(), myConstraint(theConstraint), myPlane(thePlane)
37 {
38   
39 }  
40
41
42
43 void SketcherPrs_Coincident::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
44                                    const Handle(Prs3d_Presentation)& thePresentation, 
45                                    const Standard_Integer theMode)
46 {
47   std::shared_ptr<GeomAPI_Pnt2d> aPnt = SketcherPrs_Tools::getPoint(myConstraint, 
48                                                                     SketchPlugin_Constraint::ENTITY_A());
49   if (aPnt.get() == NULL)
50     return;
51
52   std::shared_ptr<GeomAPI_Pnt> aPoint = myPlane->to3D(aPnt->x(), aPnt->y());
53   myPoint = aPoint->impl<gp_Pnt>();
54
55   static Handle(Graphic3d_AspectMarker3d) aPtA;
56   if (aPtA.IsNull()) {
57     aPtA = new Graphic3d_AspectMarker3d ();
58     aPtA->SetType(Aspect_TOM_RING1);
59     aPtA->SetScale(2.);
60     aPtA->SetColor(myOwnColor);
61   }
62   Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePresentation);
63   aGroup->SetPrimitivesAspect(aPtA);
64   Handle(Graphic3d_ArrayOfPoints) aPntArray = new Graphic3d_ArrayOfPoints(1);
65   aPntArray->AddVertex (aPoint->x(), aPoint->y(), aPoint->z());
66   aGroup->AddPrimitiveArray (aPntArray);
67 }
68
69
70 void SketcherPrs_Coincident::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
71                                             const Standard_Integer aMode)
72 {
73   Handle(SelectMgr_EntityOwner) aOwn = new SelectMgr_EntityOwner(this, 10);
74   Handle(Select3D_SensitivePoint) aSp = new Select3D_SensitivePoint(aOwn, myPoint);
75   aSelection->Add(aSp);
76 }
77
78 void SketcherPrs_Coincident::SetColor(const Quantity_NameOfColor aCol)
79 {
80   SetColor(Quantity_Color(aCol));
81 }
82
83 void SketcherPrs_Coincident::SetColor(const Quantity_Color &aCol)
84 {
85   hasOwnColor=Standard_True;
86   myOwnColor=aCol;
87 }