00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00041 #ifndef __vtkTreeRingView_h
00042 #define __vtkTreeRingView_h
00043
00044 #include "vtkTreeAreaView.h"
00045
00046 class VTK_VIEWS_EXPORT vtkTreeRingView : public vtkTreeAreaView
00047 {
00048 public:
00049 static vtkTreeRingView *New();
00050 vtkTypeRevisionMacro(vtkTreeRingView, vtkTreeAreaView);
00051 void PrintSelf(ostream& os, vtkIndent indent);
00052
00054 void SetRootAngles(double start, double end);
00055
00057
00058 virtual void SetRootAtCenter(bool value);
00059 virtual bool GetRootAtCenter();
00060 vtkBooleanMacro(RootAtCenter, bool);
00062
00064
00065 virtual void SetLayerThickness(double thickness);
00066 virtual double GetLayerThickness();
00068
00070
00072 virtual void SetInteriorRadius(double thickness);
00073 virtual double GetInteriorRadius();
00075
00077
00079 virtual void SetInteriorLogSpacingValue(double thickness);
00080 virtual double GetInteriorLogSpacingValue();
00082
00083 protected:
00084 vtkTreeRingView();
00085 ~vtkTreeRingView();
00086
00087 private:
00088 vtkTreeRingView(const vtkTreeRingView&);
00089 void operator=(const vtkTreeRingView&);
00090 };
00091
00092 #endif