1 // Copyright (C) 2009-2024 CEA, EDF
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 #ifndef _HEXABLOCKGUI_SALOMETOOLS_HXX_
21 #define _HEXABLOCKGUI_SALOMETOOLS_HXX_
23 #include "HEXABLOCKGUI_Export.hxx"
25 #include <SalomeApp_Application.h>
26 #include <SALOME_Actor.h>
27 #include <SALOME_ListIO.hxx>
28 #include <AIS_InteractiveObject.hxx>
29 #include <AIS_InteractiveContext.hxx>
30 #include <SelectMgr_IndexedMapOfOwner.hxx>
31 #include <SALOME_Actor.h>
32 #include <SVTK_ViewWindow.h>
35 #include <TopoDS_Shape.hxx>
36 #include <TopoDS_Vertex.hxx>
43 HEXABLOCK_EXPORT SALOME_Actor* findActorByEntry( SVTK_ViewWindow *theVtkViewWindow, const char* theEntry );
44 _PTR(Study) getStudy();
46 HEXABLOCK_EXPORT int GetNameOfSelectedElements( SVTK_ViewWindow *theWindow,/* SVTK_Selector* theSelector,*/
47 const Handle(SALOME_InteractiveObject)& theIO,
50 HEXABLOCK_EXPORT std::string shape2string( const TopoDS_Shape& aShape );
52 HEXABLOCK_EXPORT void getEntityOwners( const Handle(AIS_InteractiveObject)& theObj,
53 const Handle(AIS_InteractiveContext)& theIC,
54 SelectMgr_IndexedMapOfOwner& theMap );
56 HEXABLOCK_EXPORT void indicesToOwners( const TColStd_IndexedMapOfInteger& aIndexMap,
57 const TopoDS_Shape& aMainShape,
58 const SelectMgr_IndexedMapOfOwner& anAllMap,
59 SelectMgr_IndexedMapOfOwner& aToHiliteMap );
61 HEXABLOCK_EXPORT TopoDS_Shape getSubShape(const TopoDS_Shape& theShape, const int theIndex);
62 HEXABLOCK_EXPORT int getSubId(const TopoDS_Shape& theShape, const TopoDS_Shape& theSubShape);
64 HEXABLOCK_EXPORT Standard_Boolean getExtremaSolution(const gp_Pnt& theInitPnt,
65 const TopoDS_Shape& theRefShape,
68 HEXABLOCK_EXPORT TopoDS_Vertex makePoint(const double x, const double y, const double z);
70 HEXABLOCK_EXPORT TopoDS_Vertex makePointWithReference(const TopoDS_Shape& point, const double dx,
74 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnCurve(const TopoDS_Shape& edge, const double param);
76 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnCurveByLength(const TopoDS_Shape& edge, const TopoDS_Shape& point, const double length);
78 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnCurveByCoord(const TopoDS_Shape& edge, const double x, const double y, const double z);
80 TopoDS_Vertex makePointOnLinesIntersection(const TopoDS_Shape& line1, const TopoDS_Shape& line2);
82 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnSurface(const TopoDS_Shape& face, const double param_u, const double param_v);
84 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnSurfaceByCoord(const TopoDS_Shape& face, const double x, const double y, const double z);