Salome HOME
Create SketcherPrs package
[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_Point.h>
20 #include <SketchPlugin_Circle.h>
21 #include <SketchPlugin_Constraint.h>
22
23 #include <AIS_Drawer.hxx>
24 #include <Graphic3d_AspectMarker3d.hxx>
25 #include <Graphic3d_ArrayOfPoints.hxx>
26 #include <Prs3d_PointAspect.hxx>
27 #include <Prs3d_Root.hxx>
28
29
30 IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject);
31 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Coincident, AIS_InteractiveObject);
32
33 SketcherPrs_Coincident::SketcherPrs_Coincident(SketchPlugin_Constraint* theConstraint, 
34                                                const std::shared_ptr<GeomAPI_Ax3>& thePlane) 
35  : AIS_InteractiveObject(), myConstraint(theConstraint), myPlane(thePlane)
36 {
37 }  
38
39
40
41 void SketcherPrs_Coincident::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
42                                    const Handle(Prs3d_Presentation)& thePresentation, 
43                                    const Standard_Integer theMode)
44 {
45   std::shared_ptr<GeomAPI_Pnt2d> aPnt = SketcherPrs_Tools::getPoint(myConstraint, 
46                                                                     SketchPlugin_Constraint::ENTITY_A());
47   if (aPnt.get() == NULL)
48     return;
49
50   std::shared_ptr<GeomAPI_Pnt> aPoint = myPlane->to3D(aPnt->x(), aPnt->y());
51
52   static Handle(Graphic3d_AspectMarker3d) aPtA = new Graphic3d_AspectMarker3d ();
53   aPtA->SetType(Aspect_TOM_RING1);
54   aPtA->SetScale(2.);
55   aPtA->SetColor(myOwnColor);
56   Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePresentation);
57   aGroup->SetPrimitivesAspect(aPtA);
58   Handle(Graphic3d_ArrayOfPoints) aPntArray = new Graphic3d_ArrayOfPoints(1);
59   aPntArray->AddVertex (aPoint->x(), aPoint->y(), aPoint->z());
60   aGroup->AddPrimitiveArray (aPntArray);
61 }
62
63
64 void SketcherPrs_Coincident::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
65                                             const Standard_Integer aMode)
66 {
67 }
68
69 void SketcherPrs_Coincident::SetColor(const Quantity_NameOfColor aCol)
70 {
71   SetColor(Quantity_Color(aCol));
72 }
73
74 void SketcherPrs_Coincident::SetColor(const Quantity_Color &aCol)
75 {
76   hasOwnColor=Standard_True;
77   myOwnColor=aCol;
78 }