Salome HOME
5a7d2a538e4a613c23111f57c1d417837ace3ae8
[modules/shaper.git] / 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
27 #include <SketchPlugin_Constraint.h>
28
29 #include <GeomAdaptor_Curve.hxx>
30 #include <Prs3d_Root.hxx>
31 #include <Graphic3d_AspectLine3d.hxx>
32 #include <StdPrs_DeflectionCurve.hxx>
33
34
35 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Tangent, SketcherPrs_SymbolPrs);
36
37 static Handle(Image_AlienPixMap) MyPixMap;
38
39 SketcherPrs_Tangent::SketcherPrs_Tangent(ModelAPI_Feature* theConstraint,
40                                            const std::shared_ptr<GeomAPI_Ax3>& thePlane)
41  : SketcherPrs_SymbolPrs(theConstraint, thePlane)
42 {
43 }
44
45 bool SketcherPrs_Tangent::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
58   return aReadyToDisplay;
59 }
60
61 bool SketcherPrs_Tangent::updateIfReadyToDisplay(double theStep, bool withColor) const
62 {
63   if (!IsReadyToDisplay(myConstraint, myPlane))
64     return false;
65
66   ObjectPtr aObj1 =
67     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
68   ObjectPtr aObj2 =
69     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
70
71   // Compute points coordinates
72   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
73   gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
74   gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
75   myPntArray = new Graphic3d_ArrayOfPoints(2, withColor);
76   myPntArray->AddVertex(aP1);
77   myPntArray->AddVertex(aP2);
78   return true;
79 }
80
81 void SketcherPrs_Tangent::drawLines(const Handle(Prs3d_Presentation)& thePrs,
82                                     Quantity_Color theColor) const
83 {
84   ObjectPtr aObj1 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
85   ObjectPtr aObj2 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
86
87   std::shared_ptr<GeomAPI_Shape> aShape1 = SketcherPrs_Tools::getShape(aObj1);
88   std::shared_ptr<GeomAPI_Shape> aShape2 = SketcherPrs_Tools::getShape(aObj2);
89
90   if ((aShape1.get() == NULL) || (aShape2.get() == NULL))
91     return;
92   drawShape(aShape1, thePrs, theColor);
93   drawShape(aShape2, thePrs, theColor);
94 }
95