X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FVTKViewer%2FVTKViewer_GeometryFilter.h;h=e2420fef3748b9beac9a25c3b1664ddee1bd7e88;hb=refs%2Fheads%2Fngr%2Fpython3_dev_pv5.4;hp=b482eb5af864bb1faa761dc6a376f894a78e5a85;hpb=1c889394b028b786898a995d38c07c8f3d564837;p=modules%2Fgui.git diff --git a/src/VTKViewer/VTKViewer_GeometryFilter.h b/src/VTKViewer/VTKViewer_GeometryFilter.h index b482eb5af..e2420fef3 100755 --- a/src/VTKViewer/VTKViewer_GeometryFilter.h +++ b/src/VTKViewer/VTKViewer_GeometryFilter.h @@ -1,24 +1,25 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. // -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef VTKVIEWER_GEOMETRYFILTER_H #define VTKVIEWER_GEOMETRYFILTER_H @@ -26,12 +27,15 @@ #include +#include #include #ifdef WIN32 #pragma warning ( disable:4251 ) #endif +class vtkUnstructuredGrid; + /*! \brief This class used same as vtkGeometryFilter. See documentation on VTK for more information. */ class VTKVIEWER_EXPORT VTKViewer_GeometryFilter : public vtkGeometryFilter @@ -41,10 +45,10 @@ public: */ static VTKViewer_GeometryFilter *New(); - /*! \fn vtkTypeRevisionMacro(VTKViewer_GeometryFilter, vtkGeometryFilter) + /*! \fn vtkTypeMacro(VTKViewer_GeometryFilter, vtkGeometryFilter) * \brief VTK type revision macros. */ - vtkTypeRevisionMacro(VTKViewer_GeometryFilter, vtkGeometryFilter); + vtkTypeMacro(VTKViewer_GeometryFilter, vtkGeometryFilter); /*! \fn void SetInside(int theShowInside) * \brief Sets \a myShowInside flag. \a myShowInside is changed, call this->Modified(). * \param theShowInside - used for changing value of \a myShowInside variable. @@ -55,6 +59,16 @@ public: * \retval myShowInside */ int GetInside(); + /*! \fn int GetAppendCoincident3D() + * \brief Return value of \a myAppendCoincident3D + * \retval myAppendCoincident3D + */ + int GetAppendCoincident3D() const; + /*! \fn void SetAppendCoincident3D() + * \brief Sets \a myAppendCoincident3D flag. If this flag is true, filter append to the + result data set coincident 3D elements. + */ + void SetAppendCoincident3D(int theFlag); /*! \fn void SetWireframeMode(int theIsWireframeMode) * \brief Sets \a myIsWireframeMode flag. \a myIsWireframeMode is changed, call this->Modified(). * \param theIsWireframeMode - used for changing value of \a myIsWireframeMode variable. @@ -86,6 +100,21 @@ public: */ virtual vtkIdType GetElemObjId(int theVtkID); + virtual void SetQuadraticArcMode(bool theFlag); + virtual bool GetQuadraticArcMode() const; + + virtual void SetQuadraticArcAngle(double theMaxAngle); + virtual double GetQuadraticArcAngle() const; + + typedef std::vector TVectorId; + //typedef std::map TMapOfVectorId; + typedef std::vector TMapOfVectorId; + + static void InsertId( const vtkIdType theCellId, + const vtkIdType theCellType, + TVectorId& theVTK2ObjIds, + TMapOfVectorId& theDimension2VTK2ObjIds ); + protected: /*! \fn VTKViewer_GeometryFilter(); * \brief Constructor which sets \a myShowInside = 0 and \a myStoreMapping = 0 @@ -104,15 +133,23 @@ protected: * \brief Filter culculation method for data object type is VTK_UNSTRUCTURED_GRID. */ int UnstructuredGridExecute (vtkDataSet *, vtkPolyData *, vtkInformation *); - -private: - typedef std::vector TVectorId; + + void BuildArcedPolygon(vtkIdType cellId, + vtkUnstructuredGrid* input, + vtkPolyData *output, + TMapOfVectorId& theDimension2VTK2ObjIds, + bool triangulate = false); + private: TVectorId myVTK2ObjIds; int myShowInside; int myStoreMapping; int myIsWireframeMode; + int myAppendCoincident3D; + + double myMaxArcAngle; // define max angle for mesh 2D quadratic element in the degrees + bool myIsBuildArc; // flag for representation 2D quadratic element as arked polygon }; #ifdef WIN32