1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "SketcherPrs_Tangent.h"
21 #include "SketcherPrs_Tools.h"
22 #include "SketcherPrs_PositionMgr.h"
24 #include <GeomAPI_Curve.h>
25 #include <GeomAPI_Circ.h>
26 #include <GeomAPI_Lin.h>
27 #include <GeomAPI_Vertex.h>
29 #include <SketchPlugin_Constraint.h>
31 #include <GeomAdaptor_Curve.hxx>
32 #include <Prs3d_Root.hxx>
33 #include <Graphic3d_AspectLine3d.hxx>
34 #include <StdPrs_DeflectionCurve.hxx>
37 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Tangent, SketcherPrs_SymbolPrs);
39 static Handle(Image_AlienPixMap) MyPixMap;
41 SketcherPrs_Tangent::SketcherPrs_Tangent(ModelAPI_Feature* theConstraint,
42 SketchPlugin_Sketch* theSketcher)
43 : SketcherPrs_SymbolPrs(theConstraint, theSketcher)
47 bool SketcherPrs_Tangent::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
48 const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
50 bool aReadyToDisplay = false;
53 SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
55 SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
57 aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
58 SketcherPrs_Tools::getShape(aObj2).get() != NULL;
60 return aReadyToDisplay;
63 bool SketcherPrs_Tangent::updateIfReadyToDisplay(double theStep, bool withColor) const
65 if (!IsReadyToDisplay(myConstraint, plane()))
69 SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
71 SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
73 GeomShapePtr aShp1 = SketcherPrs_Tools::getShape(aObj1);
74 GeomShapePtr aShp2 = SketcherPrs_Tools::getShape(aObj2);
76 GeomCurvePtr aCurv1 = std::shared_ptr<GeomAPI_Curve>(new GeomAPI_Curve(aShp1));
77 GeomCurvePtr aCurv2 = std::shared_ptr<GeomAPI_Curve>(new GeomAPI_Curve(aShp2));
80 GeomShapePtr aIntPnt = aShp1->intersect(aShp2);
81 if (aIntPnt.get() && aIntPnt->isVertex()) {
82 GeomVertexPtr aVetrex(new GeomAPI_Vertex(aIntPnt));
83 aPnt = aVetrex->point();
86 // Compute points coordinates
88 SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
89 gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep, aPnt);
90 myPntArray = new Graphic3d_ArrayOfPoints(1, withColor);
91 myPntArray->AddVertex(aP1);
93 SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
94 gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
95 gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
96 myPntArray = new Graphic3d_ArrayOfPoints(2, withColor);
97 myPntArray->AddVertex(aP1);
98 myPntArray->AddVertex(aP2);
103 void SketcherPrs_Tangent::drawLines(const Handle(Prs3d_Presentation)& thePrs,
104 Quantity_Color theColor) const
106 ObjectPtr aObj1 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
107 ObjectPtr aObj2 = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
109 std::shared_ptr<GeomAPI_Shape> aShape1 = SketcherPrs_Tools::getShape(aObj1);
110 std::shared_ptr<GeomAPI_Shape> aShape2 = SketcherPrs_Tools::getShape(aObj2);
112 if ((aShape1.get() == NULL) || (aShape2.get() == NULL))
114 drawShape(aShape1, thePrs, theColor);
115 drawShape(aShape2, thePrs, theColor);