// Our VTK namespace is uppercase to not conflict with the lowercase VTK namespace. namespace VTK { // Common base class for box widget adaptors. public class BoxWidgetAdaptor { // From vtkBoxWidget.h protected enum WidgetState { Start=0, Moving, NonUniformScaling, Outside, UniformScaling, Rotating, Nothing } } }