Salome HOME
017e5fc64d621a31bd4fb9352de62f33c934e780
[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
29 #include <SketchPlugin_Constraint.h>
30
31 #include <GeomAdaptor_Curve.hxx>
32 #include <Prs3d_Root.hxx>
33 #include <Graphic3d_AspectLine3d.hxx>
34 #include <StdPrs_DeflectionCurve.hxx>
35
36
37 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Tangent, SketcherPrs_SymbolPrs);
38
39 static Handle(Image_AlienPixMap) MyPixMap;
40
41 SketcherPrs_Tangent::SketcherPrs_Tangent(ModelAPI_Feature* theConstraint,
42                                            const std::shared_ptr<GeomAPI_Ax3>& thePlane)
43  : SketcherPrs_SymbolPrs(theConstraint, thePlane)
44 {
45 }
46
47 bool SketcherPrs_Tangent::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
48                                            const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
49 {
50   bool aReadyToDisplay = false;
51
52   ObjectPtr aObj1 =
53     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
54   ObjectPtr aObj2 =
55     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
56
57   aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
58                     SketcherPrs_Tools::getShape(aObj2).get() != NULL;
59
60   return aReadyToDisplay;
61 }
62
63 bool SketcherPrs_Tangent::updateIfReadyToDisplay(double theStep, bool withColor) const
64 {
65   if (!IsReadyToDisplay(myConstraint, myPlane))
66     return false;
67
68   ObjectPtr aObj1 =
69     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
70   ObjectPtr aObj2 =
71     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
72
73   GeomShapePtr aShp1 = SketcherPrs_Tools::getShape(aObj1);
74   GeomShapePtr aShp2 = SketcherPrs_Tools::getShape(aObj2);
75
76   GeomCurvePtr aCurv1 = std::shared_ptr<GeomAPI_Curve>(new GeomAPI_Curve(aShp1));
77   GeomCurvePtr aCurv2 = std::shared_ptr<GeomAPI_Curve>(new GeomAPI_Curve(aShp2));
78
79   GeomCurvePtr aLine;
80   GeomCirclePtr aCircle;
81   double aFirst, aLast;
82   if (aCurv1->isLine()) {
83     aLine = aCurv1;
84     aCircle = GeomCirclePtr(new GeomAPI_Circ(aCurv2));
85     aFirst = aCurv2->startParam();
86     aLast = aCurv2->endParam();
87   } else {
88     aLine = aCurv2;
89     aCircle = GeomCirclePtr(new GeomAPI_Circ(aCurv1));
90     aFirst = aCurv1->startParam();
91     aLast = aCurv1->endParam();
92   }
93
94   GeomPointPtr aPnt1 = aLine->getPoint(aLine->startParam());
95   GeomPointPtr aPnt2 = aLine->getPoint(aLine->endParam());
96   double aParam;
97   GeomPointPtr aPnt;
98   if (aCircle->parameter(aPnt1, 1.e-4, aParam) && (aParam >= aFirst) && (aParam <= aLast))
99     aPnt = aPnt1;
100   else
101     aPnt = aPnt2;
102
103   // Compute points coordinates
104   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
105   gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep, aPnt);
106   myPntArray = new Graphic3d_ArrayOfPoints(1, withColor);
107   myPntArray->AddVertex(aP1);
108   return true;
109 }
110
111 void SketcherPrs_Tangent::drawLines(const Handle(Prs3d_Presentation)& thePrs,
112                                     Quantity_Color theColor) const
113 {
114   ObjectPtr aObj1 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
115   ObjectPtr aObj2 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
116
117   std::shared_ptr<GeomAPI_Shape> aShape1 = SketcherPrs_Tools::getShape(aObj1);
118   std::shared_ptr<GeomAPI_Shape> aShape2 = SketcherPrs_Tools::getShape(aObj2);
119
120   if ((aShape1.get() == NULL) || (aShape2.get() == NULL))
121     return;
122   drawShape(aShape1, thePrs, theColor);
123   drawShape(aShape2, thePrs, theColor);
124 }
125