X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FVTKViewer%2FVTKViewer_GeometryFilter.h;h=7101eacc6d8bb6ecbfe00a65298d064e6ee36ba2;hb=afc806f1d4b4117f710021ef12cf216c7beed7d1;hp=3290640361cbd6e7b476f5986e1878ddac85f5dd;hpb=9f1a66957ba9a2308f8fdc3f9397140af9df5fd0;p=modules%2Fgui.git diff --git a/src/VTKViewer/VTKViewer_GeometryFilter.h b/src/VTKViewer/VTKViewer_GeometryFilter.h index 329064036..7101eacc6 100755 --- a/src/VTKViewer/VTKViewer_GeometryFilter.h +++ b/src/VTKViewer/VTKViewer_GeometryFilter.h @@ -1,21 +1,25 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// +// Copyright (C) 2007-2013 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 +// // 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 +// License as published by the Free Software Foundation; either // version 2.1 of the License. -// -// 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 +// +// 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 +// 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/ +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef VTKVIEWER_GEOMETRYFILTER_H #define VTKVIEWER_GEOMETRYFILTER_H @@ -23,7 +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 @@ -33,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. @@ -51,6 +63,19 @@ public: * \brief Sets \a myIsWireframeMode flag. \a myIsWireframeMode is changed, call this->Modified(). * \param theIsWireframeMode - used for changing value of \a myIsWireframeMode variable. */ + + 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 int SetAppendCoincident3D() + * \brief Return value of \a myAppendCoincident3D + * \retval myAppendCoincident3D + */ + void SetWireframeMode(int theIsWireframeMode); /*! \fn int GetWireframeMode() * \brief Return value of \a myIsWireframeMode @@ -78,6 +103,20 @@ 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; + + 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 @@ -87,23 +126,36 @@ protected: * \brief Destructor. */ ~VTKViewer_GeometryFilter(); - /*! \fn void Execute(); - * \brief Filter culculation method. - */ - void Execute(); + + virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); + + //special cases for performance + /*! \fn void UnstructuredGridExecute(); * \brief Filter culculation method for data object type is VTK_UNSTRUCTURED_GRID. */ - void UnstructuredGridExecute(); - -private: - typedef std::vector TVectorId; + int UnstructuredGridExecute (vtkDataSet *, vtkPolyData *, vtkInformation *); + + 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 +#pragma warning ( default:4251 ) +#endif + #endif