00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00029 #ifndef __vtkLineSource_h
00030 #define __vtkLineSource_h
00031
00032 #include "vtkPolyDataAlgorithm.h"
00033
00034 class VTK_GRAPHICS_EXPORT vtkLineSource : public vtkPolyDataAlgorithm
00035 {
00036 public:
00037 static vtkLineSource *New();
00038 vtkTypeRevisionMacro(vtkLineSource,vtkPolyDataAlgorithm);
00039 void PrintSelf(ostream& os, vtkIndent indent);
00040
00042
00043 vtkSetVector3Macro(Point1,double);
00044 vtkGetVectorMacro(Point1,double,3);
00046
00048
00049 vtkSetVector3Macro(Point2,double);
00050 vtkGetVectorMacro(Point2,double,3);
00052
00054
00055 vtkSetClampMacro(Resolution,int,1,VTK_LARGE_INTEGER);
00056 vtkGetMacro(Resolution,int);
00058
00059 protected:
00060 vtkLineSource(int res=1);
00061 ~vtkLineSource() {};
00062
00063 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00064 int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00065 double Point1[3];
00066 double Point2[3];
00067 int Resolution;
00068 private:
00069 vtkLineSource(const vtkLineSource&);
00070 void operator=(const vtkLineSource&);
00071 };
00072
00073 #endif