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
00055 #ifndef __vtkAbstractMapper_h
00056 #define __vtkAbstractMapper_h
00057
00058 #include "vtkProcessObject.h"
00059 #include "vtkPlaneCollection.h"
00060 #include "vtkPlane.h"
00061 #include "vtkPlanes.h"
00062 #include "vtkTimerLog.h"
00063
00064 #define VTK_SCALAR_MODE_DEFAULT 0
00065 #define VTK_SCALAR_MODE_USE_POINT_DATA 1
00066 #define VTK_SCALAR_MODE_USE_CELL_DATA 2
00067 #define VTK_SCALAR_MODE_USE_POINT_FIELD_DATA 3
00068 #define VTK_SCALAR_MODE_USE_CELL_FIELD_DATA 4
00069
00070 #define VTK_GET_ARRAY_BY_ID 0
00071 #define VTK_GET_ARRAY_BY_NAME 1
00072
00073 class vtkWindow;
00074 class vtkDataSet;
00075
00076 class VTK_COMMON_EXPORT vtkAbstractMapper : public vtkProcessObject
00077 {
00078 public:
00079 vtkTypeMacro(vtkAbstractMapper,vtkProcessObject);
00080 void PrintSelf(ostream& os, vtkIndent indent);
00081
00083 virtual unsigned long GetMTime();
00084
00088 virtual void ReleaseGraphicsResources(vtkWindow *) {};
00089
00091
00092 vtkGetMacro( TimeToDraw, float );
00094
00096
00098 void AddClippingPlane(vtkPlane *plane);
00099 void RemoveClippingPlane(vtkPlane *plane);
00100 void RemoveAllClippingPlanes();
00102
00104
00105 vtkSetObjectMacro(ClippingPlanes,vtkPlaneCollection);
00106 vtkGetObjectMacro(ClippingPlanes,vtkPlaneCollection);
00108
00111 void SetClippingPlanes(vtkPlanes *planes);
00112
00114 void ShallowCopy(vtkAbstractMapper *m);
00115
00117
00122 static vtkDataArray *GetScalars(vtkDataSet *input, int scalarMode,
00123 int arrayAccessMode, int arrayId,
00124 const char *arrayName, int& component);
00126 protected:
00127 vtkAbstractMapper();
00128 ~vtkAbstractMapper();
00129
00130 vtkTimerLog *Timer;
00131 float TimeToDraw;
00132 vtkWindow *LastWindow;
00133 vtkPlaneCollection *ClippingPlanes;
00134
00135 private:
00136 vtkAbstractMapper(const vtkAbstractMapper&);
00137 void operator=(const vtkAbstractMapper&);
00138 };
00139
00140 #endif
00141
00142