]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketcherPrs/SketcherPrs_Tangent.cpp
Salome HOME
bf998d8120b5e8fe1c17ed3d932ab56567ee012c
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Tangent.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "SketcherPrs_Tangent.h"
22 #include "SketcherPrs_Tools.h"
23 #include "SketcherPrs_PositionMgr.h"
24
25 #include <GeomAPI_Curve.h>
26 #include <GeomAPI_Circ.h>
27 #include <GeomAPI_Lin.h>
28 #include <GeomAPI_Vertex.h>
29
30 #include <SketchPlugin_Constraint.h>
31
32 #include <GeomAdaptor_Curve.hxx>
33 #include <Prs3d_Root.hxx>
34 #include <Graphic3d_AspectLine3d.hxx>
35 #include <StdPrs_DeflectionCurve.hxx>
36
37
38 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Tangent, SketcherPrs_SymbolPrs);
39
40 static Handle(Image_AlienPixMap) MyPixMap;
41
42 SketcherPrs_Tangent::SketcherPrs_Tangent(ModelAPI_Feature* theConstraint,
43                                          ModelAPI_CompositeFeature* theSketcher,
44                                            const std::shared_ptr<GeomAPI_Ax3>& thePlane)
45  : SketcherPrs_SymbolPrs(theConstraint, theSketcher, thePlane)
46 {
47 }
48
49 bool SketcherPrs_Tangent::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
50                                            const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
51 {
52   bool aReadyToDisplay = false;
53
54   ObjectPtr aObj1 =
55     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
56   ObjectPtr aObj2 =
57     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
58
59   aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
60                     SketcherPrs_Tools::getShape(aObj2).get() != NULL;
61
62   return aReadyToDisplay;
63 }
64
65 bool SketcherPrs_Tangent::updateIfReadyToDisplay(double theStep, bool withColor) const
66 {
67   if (!IsReadyToDisplay(myConstraint, myPlane))
68     return false;
69
70   ObjectPtr aObj1 =
71     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
72   ObjectPtr aObj2 =
73     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
74
75   GeomShapePtr aShp1 = SketcherPrs_Tools::getShape(aObj1);
76   GeomShapePtr aShp2 = SketcherPrs_Tools::getShape(aObj2);
77
78   GeomCurvePtr aCurv1 = std::shared_ptr<GeomAPI_Curve>(new GeomAPI_Curve(aShp1));
79   GeomCurvePtr aCurv2 = std::shared_ptr<GeomAPI_Curve>(new GeomAPI_Curve(aShp2));
80
81   GeomPointPtr aPnt;
82   GeomShapePtr aIntPnt = aShp1->intersect(aShp2);
83   if (aIntPnt.get() && aIntPnt->isVertex()) {
84     GeomVertexPtr aVetrex(new GeomAPI_Vertex(aIntPnt));
85     aPnt = aVetrex->point();
86   }
87
88   // Compute points coordinates
89   if (aPnt.get()) {
90     SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
91     gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep, aPnt);
92     myPntArray = new Graphic3d_ArrayOfPoints(1, withColor);
93     myPntArray->AddVertex(aP1);
94   } else {
95     SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
96     gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
97     gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
98     myPntArray = new Graphic3d_ArrayOfPoints(2, withColor);
99     myPntArray->AddVertex(aP1);
100     myPntArray->AddVertex(aP2);
101   }
102   return true;
103 }
104
105 void SketcherPrs_Tangent::drawLines(const Handle(Prs3d_Presentation)& thePrs,
106                                     Quantity_Color theColor) const
107 {
108   ObjectPtr aObj1 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
109   ObjectPtr aObj2 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
110
111   std::shared_ptr<GeomAPI_Shape> aShape1 = SketcherPrs_Tools::getShape(aObj1);
112   std::shared_ptr<GeomAPI_Shape> aShape2 = SketcherPrs_Tools::getShape(aObj2);
113
114   if ((aShape1.get() == NULL) || (aShape2.get() == NULL))
115     return;
116   drawShape(aShape1, thePrs, theColor);
117   drawShape(aShape2, thePrs, theColor);
118 }
119