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
00054 #ifndef __vtkImageGridSource_h
00055 #define __vtkImageGridSource_h
00056
00057 #include "vtkImageSource.h"
00058
00059 class VTK_IMAGING_EXPORT vtkImageGridSource : public vtkImageSource
00060 {
00061 public:
00062 static vtkImageGridSource *New();
00063 vtkTypeMacro(vtkImageGridSource,vtkImageSource);
00064 void PrintSelf(ostream& os, vtkIndent indent);
00065
00067
00069 vtkSetVector3Macro(GridSpacing,int);
00070 vtkGetVector3Macro(GridSpacing,int);
00072
00074
00075 vtkSetVector3Macro(GridOrigin,int);
00076 vtkGetVector3Macro(GridOrigin,int);
00078
00080
00081 vtkSetMacro(LineValue,float);
00082 vtkGetMacro(LineValue,float);
00084
00086
00087 vtkSetMacro(FillValue,float);
00088 vtkGetMacro(FillValue,float);
00090
00092
00094 vtkSetMacro(DataScalarType,int);
00095 void SetDataScalarTypeToFloat(){this->SetDataScalarType(VTK_FLOAT);}
00096 void SetDataScalarTypeToInt(){this->SetDataScalarType(VTK_INT);}
00097 void SetDataScalarTypeToShort(){this->SetDataScalarType(VTK_SHORT);}
00098 void SetDataScalarTypeToUnsignedShort()
00099 {this->SetDataScalarType(VTK_UNSIGNED_SHORT);}
00100 void SetDataScalarTypeToUnsignedChar()
00101 {this->SetDataScalarType(VTK_UNSIGNED_CHAR);}
00102 vtkGetMacro(DataScalarType, int);
00103 const char *GetDataScalarTypeAsString() {
00104 return vtkImageScalarTypeNameMacro(this->DataScalarType); }
00106
00108
00110 vtkSetVector6Macro(DataExtent,int);
00111 vtkGetVector6Macro(DataExtent,int);
00113
00115
00116 vtkSetVector3Macro(DataSpacing,float);
00117 vtkGetVector3Macro(DataSpacing,float);
00119
00121
00122 vtkSetVector3Macro(DataOrigin,float);
00123 vtkGetVector3Macro(DataOrigin,float);
00125
00126 protected:
00127 vtkImageGridSource();
00128 ~vtkImageGridSource() {};
00129
00130 int GridSpacing[3];
00131 int GridOrigin[3];
00132
00133 float LineValue;
00134 float FillValue;
00135
00136 int DataScalarType;
00137
00138 int DataExtent[6];
00139 float DataSpacing[3];
00140 float DataOrigin[3];
00141
00142 virtual void ExecuteInformation();
00143 virtual void ExecuteData(vtkDataObject *data);
00144 private:
00145 vtkImageGridSource(const vtkImageGridSource&);
00146 void operator=(const vtkImageGridSource&);
00147 };
00148
00149
00150 #endif