00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00065 #ifndef __vtkCellTypes_h
00066 #define __vtkCellTypes_h
00067
00068 #include "vtkObject.h"
00069 #include "vtkCellType.h"
00070
00071 struct _vtkCell_s {
00072 unsigned char type;
00073 int loc;
00074 };
00075
00076 class VTK_EXPORT vtkCellTypes : public vtkObject
00077 {
00078 public:
00079 static vtkCellTypes *New();
00080 vtkTypeMacro(vtkCellTypes,vtkObject);
00081
00083 int Allocate(int sz=512, int ext=1000);
00084
00086 void InsertCell(int id, unsigned char type, int loc);
00087
00089 int InsertNextCell(unsigned char type, int loc);
00090
00092 int GetCellLocation(int cellId) { return this->Array[cellId].loc;};
00093
00095 void DeleteCell(int cellId) { this->Array[cellId].type = VTK_EMPTY_CELL;};
00096
00098 int GetNumberOfTypes() { return (this->MaxId + 1);};
00099
00101 int IsType(unsigned char type);
00102
00105 int InsertNextType(unsigned char type){return this->InsertNextCell(type,-1);};
00106
00108 _vtkCell_s &GetCell(int id) { return this->Array[id];};
00109
00111 unsigned char GetCellType(int cellId) { return this->Array[cellId].type;};
00112
00114 void Squeeze();
00115
00117 void Reset();
00118
00125 unsigned long GetActualMemorySize();
00126
00129 void DeepCopy(vtkCellTypes *src);
00130
00131 protected:
00132 vtkCellTypes() : Array(NULL),Size(0),MaxId(-1),Extend(1000) {};
00133 ~vtkCellTypes();
00134 vtkCellTypes(const vtkCellTypes&) {};
00135 void operator=(const vtkCellTypes&) {};
00136
00137 _vtkCell_s *Array;
00138 int Size;
00139 int MaxId;
00140 int Extend;
00141 _vtkCell_s *Resize(int sz);
00142 };
00143
00144
00145
00146 inline int vtkCellTypes::IsType(unsigned char type)
00147 {
00148 int numTypes=this->GetNumberOfTypes();
00149
00150 for (int i=0; i<numTypes; i++)
00151 {
00152 if ( type == this->GetCellType(i))
00153 {
00154 return 1;
00155 }
00156 }
00157 return 0;
00158 }
00159
00160
00161 #endif