Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __VTKNORMALIZEDUNSTRUCTUREDMESH_HXX__
00021 #define __VTKNORMALIZEDUNSTRUCTUREDMESH_HXX__
00022
00023 #include "NormalizedUnstructuredMesh.hxx"
00024
00025 #include "vtkType.h"
00026
00027 class vtkUnstructuredGrid;
00028
00029 template<int MESHDIM>
00030 class INTERPKERNEL_EXPORT VTKNormalizedUnstructuredMesh : public INTERP_KERNEL::GenericMesh
00031 {
00032 public:
00033 static const int MY_SPACEDIM=3;
00034 static const int MY_MESHDIM=MESHDIM;
00035 typedef vtkIdType MyConnType;
00036 static const INTERP_KERNEL::NumberingPolicy My_numPol=INTERP_KERNEL::ALL_C_MODE;
00037 public:
00038 VTKNormalizedUnstructuredMesh(vtkUnstructuredGrid *mesh);
00039 ~VTKNormalizedUnstructuredMesh();
00040 void getBoundingBox(double *boundingBox) const;
00041 NormalizedCellType getTypeOfElement(vtkIdType eltId) const;
00042 unsigned long getNumberOfElements() const;
00043 unsigned long getNumberOfNodes() const;
00044 const vtkIdType *getConnectivityPtr() const;
00045 const double *getCoordinatesPtr() const;
00046 const vtkIdType *getConnectivityIndexPtr() const;
00047 void releaseTempArrays();
00048 protected:
00049 void putinMEDFormat() const;
00050 protected:
00051 vtkUnstructuredGrid *_mesh_in_vtk_mode;
00052 mutable vtkIdType *_tmp_index_array;
00053 };
00054
00055 #endif