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 #ifndef __vtkMaskedGlyph3D_h
00019 #define __vtkMaskedGlyph3D_h
00020
00021 #include "MitkExtExports.h"
00022
00023 #include "vtkGlyph3D.h"
00024
00025 #include "mitkCommon.h"
00026
00027 class vtkMaskPoints;
00036 class MitkExt_EXPORT vtkMaskedGlyph3D : public vtkGlyph3D
00037 {
00038 public:
00039 vtkTypeRevisionMacro(vtkMaskedGlyph3D,vtkGlyph3D);
00040 void PrintSelf(ostream& os, vtkIndent indent);
00041
00045 static vtkMaskedGlyph3D *New();
00046
00050 vtkSetMacro(MaximumNumberOfPoints, int);
00051 vtkGetMacro(MaximumNumberOfPoints, int);
00052
00056 virtual void SetInput(vtkDataSet *input);
00057
00061 vtkSetMacro(UseMaskPoints, int);
00062 vtkGetMacro(UseMaskPoints, int);
00063
00067 void SetRandomMode(int mode);
00068 int GetRandomMode();
00069
00070 virtual void SetInputConnection(vtkAlgorithmOutput* input);
00071
00072 protected:
00073 vtkMaskedGlyph3D();
00074 ~vtkMaskedGlyph3D();
00075
00076 virtual void Execute();
00077 virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00078
00079 vtkMaskPoints *MaskPoints;
00080 int MaximumNumberOfPoints;
00081 int UseMaskPoints;
00082
00083 private:
00084 vtkMaskedGlyph3D(const vtkMaskedGlyph3D&);
00085 void operator=(const vtkMaskedGlyph3D&);
00086 };
00087
00088 #endif