Salome HOME
Issue #2998: Add help description for automatic creation of constraints
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Perpendicular.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "SketcherPrs_Perpendicular.h"
21 #include "SketcherPrs_Tools.h"
22 #include "SketcherPrs_PositionMgr.h"
23
24 #include <SketchPlugin_Constraint.h>
25
26 #include <Graphic3d_AspectLine3d.hxx>
27 #include <Prs3d_Root.hxx>
28
29 #include <GeomAPI_Curve.h>
30 #include <GeomAPI_Edge.h>
31 #include <GeomAPI_Lin.h>
32 #include <GeomAPI_Vertex.h>
33
34
35 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Perpendicular, SketcherPrs_SymbolPrs);
36
37 static Handle(Image_AlienPixMap) MyPixMap;
38
39 SketcherPrs_Perpendicular::SketcherPrs_Perpendicular(ModelAPI_Feature* theConstraint,
40   SketchPlugin_Sketch* theSketcher)
41  : SketcherPrs_SymbolPrs(theConstraint, theSketcher)
42 {
43 }
44
45 bool SketcherPrs_Perpendicular::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
46                                                  const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
47 {
48   bool aReadyToDisplay = false;
49
50   ObjectPtr aObj1 =
51     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
52   ObjectPtr aObj2 =
53     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
54
55   aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
56                     SketcherPrs_Tools::getShape(aObj2).get() != NULL;
57   return aReadyToDisplay;
58 }
59
60 bool SketcherPrs_Perpendicular::updateIfReadyToDisplay(double theStep, bool withColor) const
61 {
62   if (!IsReadyToDisplay(myConstraint, plane()))
63     return false;
64
65   ObjectPtr aObj1 =
66     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
67   ObjectPtr aObj2 =
68     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
69
70   GeomShapePtr aShp1 = SketcherPrs_Tools::getShape(aObj1);
71   GeomShapePtr aShp2 = SketcherPrs_Tools::getShape(aObj2);
72
73   GeomEdgePtr aEdge1(new GeomAPI_Edge(aShp1));
74   GeomEdgePtr aEdge2(new GeomAPI_Edge(aShp2));
75
76   GeomShapePtr anInter = aEdge1->intersect(aEdge2);
77   std::shared_ptr<GeomAPI_Pnt> aPnt;
78   if (anInter && anInter->isVertex())
79     aPnt = anInter->vertex()->point();
80
81   // Compute position of symbols
82   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
83   gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep, aPnt);
84   myPntArray = new Graphic3d_ArrayOfPoints(aPnt.get()? 1 : 2, withColor);
85   myPntArray->AddVertex(aP1);
86   if (!aPnt.get()) {
87     gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
88     myPntArray->AddVertex(aP2);
89   }
90   return true;
91 }
92
93
94 void SketcherPrs_Perpendicular::drawLines(const Handle(Prs3d_Presentation)& thePrs,
95                                           Quantity_Color theColor) const
96 {
97   // Draw constrained lines
98   for (int i = 0; i < 2; ++i) {
99     ObjectPtr anObj =
100         SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ATTRIBUTE(i));
101     GeomShapePtr aShape = SketcherPrs_Tools::getShape(anObj);
102     if (!aShape)
103       return;
104     drawShape(aShape, thePrs, theColor);
105   }
106 }