ManualPaintModel.h
Go to the documentation of this file.00001 #ifndef _MANUAL_PAINT_MODEL_H_
00002 #define _MANUAL_PAINT_MODEL_H_
00003
00004 #include <vtkImageData.h>
00005
00006
00007 class ManualPaintModel {
00008 public:
00009 ManualPaintModel();
00010 virtual ~ManualPaintModel();
00011
00012 void SetImage(vtkImageData *image);
00013 void PaintImage(int px,int py, int pz);
00014
00015 private:
00016 vtkImageData *_image;
00017
00018 protected:
00019
00020 };
00021
00022
00023 #endif // _MANUAL_PAINT_MODEL_H_