VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkResliceCursorLineRepresentation.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00034 #ifndef __vtkResliceCursorThickLineRepresentation_h 00035 #define __vtkResliceCursorThickLineRepresentation_h 00036 00037 #include "vtkInteractionWidgetsModule.h" // For export macro 00038 #include "vtkResliceCursorLineRepresentation.h" 00039 00040 class VTKINTERACTIONWIDGETS_EXPORT vtkResliceCursorThickLineRepresentation : public vtkResliceCursorLineRepresentation 00041 { 00042 public: 00044 static vtkResliceCursorThickLineRepresentation *New(); 00045 00047 00048 vtkTypeMacro(vtkResliceCursorThickLineRepresentation,vtkResliceCursorLineRepresentation); 00049 void PrintSelf(ostream& os, vtkIndent indent); 00051 00055 virtual void CreateDefaultResliceAlgorithm(); 00056 00058 00060 virtual void SetResliceParameters( 00061 double outputSpacingX, double outputSpacingY, 00062 int extentX, int extentY ); 00064 00065 protected: 00066 vtkResliceCursorThickLineRepresentation(); 00067 ~vtkResliceCursorThickLineRepresentation(); 00068 00069 private: 00070 vtkResliceCursorThickLineRepresentation(const vtkResliceCursorThickLineRepresentation&); //Not implemented 00071 void operator=(const vtkResliceCursorThickLineRepresentation&); //Not implemented 00072 }; 00073 00074 #endif