dox/Graphics/vtkDashedStreamLine.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00041
#ifndef __vtkDashedStreamLine_h
00042
#define __vtkDashedStreamLine_h
00043
00044
#include "vtkStreamLine.h"
00045
00046 class VTK_GRAPHICS_EXPORT vtkDashedStreamLine :
public vtkStreamLine
00047 {
00048
public:
00049
static vtkDashedStreamLine *
New();
00050 vtkTypeRevisionMacro(vtkDashedStreamLine,
vtkStreamLine);
00051
void PrintSelf(ostream& os,
vtkIndent indent);
00052
00054
00057 vtkSetClampMacro(DashFactor,
float,0.01,1.0);
00058 vtkGetMacro(DashFactor,
float);
00060
00061
protected:
00062 vtkDashedStreamLine();
00063 ~vtkDashedStreamLine() {};
00064
00065
00066
void Execute();
00067
00068
00069 float DashFactor;
00070
00071
private:
00072 vtkDashedStreamLine(
const vtkDashedStreamLine&);
00073
void operator=(
const vtkDashedStreamLine&);
00074 };
00075
00076
#endif
00077
00078