# encoding: utf-8
# module vtkmodules.vtkInteractionWidgets
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkInteractionWidgets.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel
import vtkmodules.vtkFiltersSources as __vtkmodules_vtkFiltersSources
import vtkmodules.vtkRenderingContext2D as __vtkmodules_vtkRenderingContext2D
import vtkmodules.vtkRenderingCore as __vtkmodules_vtkRenderingCore


from .vtkWidgetRepresentation import vtkWidgetRepresentation

class vtkResliceCursorRepresentation(vtkWidgetRepresentation):
    """
    vtkResliceCursorRepresentation - represent the vtkResliceCursorWidget
    
    Superclass: vtkWidgetRepresentation
    
    This class is the base class for the reslice cursor representation
    subclasses. It represents a cursor that may be interactively
    translated, rotated through an image and perform thick / thick
    reformats.
    @sa
    vtkResliceCursorLineRepresentation
    vtkResliceCursorThickLineRepresentation vtkResliceCursorWidget
    vtkResliceCursor
    """
    def ActivateText(self, __a): # real signature unknown; restored from __doc__
        """
        ActivateText(self, __a:int) -> None
        C++: void ActivateText(int)
        
        INTERNAL - Do not use. Internal methods used by the widget to
        manage text displays for annotations.
        """
        pass

    def BoundPlane(self, bounds, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        BoundPlane(bounds:[float, float, float, float, float, float],
            origin:[float, float, float], p1:[float, float, float],
            p2:[float, float, float]) -> int
        C++: static int BoundPlane(double bounds[6], double origin[3],
            double p1[3], double p2[3])
        
        Fit the plane defined by origin, p1, p2 onto the bounds. Plane is
        untouched if does not intersect bounds. return 1 if the bounds is
        intersected, else 0
        """
        pass

    def BuildRepresentation(self): # real signature unknown; restored from __doc__
        """
        BuildRepresentation(self) -> None
        C++: void BuildRepresentation() override;
        
        These are methods that satisfy vtkWidgetRepresentation's API.
        """
        pass

    def DisplayTextOff(self): # real signature unknown; restored from __doc__
        """
        DisplayTextOff(self) -> None
        C++: virtual void DisplayTextOff()
        """
        pass

    def DisplayTextOn(self): # real signature unknown; restored from __doc__
        """
        DisplayTextOn(self) -> None
        C++: virtual void DisplayTextOn()
        """
        pass

    def GetColorMap(self): # real signature unknown; restored from __doc__
        """
        GetColorMap(self) -> vtkImageMapToColors
        C++: virtual vtkImageMapToColors *GetColorMap()
        
        Convenience method to get the vtkImageMapToColors filter used by
        this widget.  The user can properly render other transparent
        actors in a scene by calling the filter's SetOutputFormatToRGB
        and PassAlphaToOutputOff.
        """
        pass

    def GetCursorAlgorithm(self): # real signature unknown; restored from __doc__
        """
        GetCursorAlgorithm(self) -> vtkResliceCursorPolyDataAlgorithm
        C++: virtual vtkResliceCursorPolyDataAlgorithm *GetCursorAlgorithm(
            )
        
        Get the underlying cursor source.
        """
        return vtkResliceCursorPolyDataAlgorithm

    def GetDisplayText(self): # real signature unknown; restored from __doc__
        """
        GetDisplayText(self) -> int
        C++: virtual vtkTypeBool GetDisplayText()
        """
        return 0

    def GetImageActor(self): # real signature unknown; restored from __doc__
        """
        GetImageActor(self) -> vtkImageActor
        C++: virtual vtkImageActor *GetImageActor()
        
        Get the displayed image actor
        """
        pass

    def GetLevel(self): # real signature unknown; restored from __doc__
        """
        GetLevel(self) -> float
        C++: double GetLevel()
        """
        return 0.0

    def GetLookupTable(self): # real signature unknown; restored from __doc__
        """
        GetLookupTable(self) -> vtkScalarsToColors
        C++: virtual vtkScalarsToColors *GetLookupTable()
        """
        pass

    def GetManipulationMode(self): # real signature unknown; restored from __doc__
        """
        GetManipulationMode(self) -> int
        C++: virtual int GetManipulationMode()
        """
        return 0

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetPlaneSource(self): # real signature unknown; restored from __doc__
        """
        GetPlaneSource(self) -> vtkPlaneSource
        C++: virtual vtkPlaneSource *GetPlaneSource()
        
        Get the plane source on which the texture (the thin/thick
        resliced image is displayed)
        """
        pass

    def GetReslice(self): # real signature unknown; restored from __doc__
        """
        GetReslice(self) -> vtkImageAlgorithm
        C++: virtual vtkImageAlgorithm *GetReslice()
        """
        pass

    def GetResliceAxes(self): # real signature unknown; restored from __doc__
        """
        GetResliceAxes(self) -> vtkMatrix4x4
        C++: virtual vtkMatrix4x4 *GetResliceAxes()
        
        Get the current reslice class and reslice axes
        """
        pass

    def GetResliceCursor(self): # real signature unknown; restored from __doc__
        """
        GetResliceCursor(self) -> vtkResliceCursor
        C++: virtual vtkResliceCursor *GetResliceCursor()
        """
        return vtkResliceCursor

    def GetRestrictPlaneToVolume(self): # real signature unknown; restored from __doc__
        """
        GetRestrictPlaneToVolume(self) -> int
        C++: virtual vtkTypeBool GetRestrictPlaneToVolume()
        """
        return 0

    def GetShowReslicedImage(self): # real signature unknown; restored from __doc__
        """
        GetShowReslicedImage(self) -> int
        C++: virtual vtkTypeBool GetShowReslicedImage()
        """
        return 0

    def GetTextProperty(self): # real signature unknown; restored from __doc__
        """
        GetTextProperty(self) -> vtkTextProperty
        C++: vtkTextProperty *GetTextProperty()
        """
        pass

    def GetThicknessLabelFormat(self): # real signature unknown; restored from __doc__
        """
        GetThicknessLabelFormat(self) -> str
        C++: virtual char *GetThicknessLabelFormat()
        """
        return ""

    def GetThicknessLabelPosition(self): # real signature unknown; restored from __doc__
        """
        GetThicknessLabelPosition(self) -> Pointer
        C++: virtual double *GetThicknessLabelPosition()
        GetThicknessLabelPosition(self, pos:[float, float, float]) -> None
        C++: virtual void GetThicknessLabelPosition(double pos[3])
        
        Get the position of the widget's label in display coordinates.
        """
        pass

    def GetThicknessLabelText(self): # real signature unknown; restored from __doc__
        """
        GetThicknessLabelText(self) -> str
        C++: virtual char *GetThicknessLabelText()
        
        Get the text shown in the widget's label.
        """
        return ""

    def GetTolerance(self): # real signature unknown; restored from __doc__
        """
        GetTolerance(self) -> int
        C++: virtual int GetTolerance()
        """
        return 0

    def GetToleranceMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetToleranceMaxValue(self) -> int
        C++: virtual int GetToleranceMaxValue()
        """
        return 0

    def GetToleranceMinValue(self): # real signature unknown; restored from __doc__
        """
        GetToleranceMinValue(self) -> int
        C++: virtual int GetToleranceMinValue()
        """
        return 0

    def GetUseImageActor(self): # real signature unknown; restored from __doc__
        """
        GetUseImageActor(self) -> int
        C++: virtual vtkTypeBool GetUseImageActor()
        """
        return 0

    def GetWindow(self): # real signature unknown; restored from __doc__
        """
        GetWindow(self) -> float
        C++: double GetWindow()
        """
        return 0.0

    def GetWindowLevel(self, wl, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetWindowLevel(self, wl:[float, float]) -> None
        C++: void GetWindowLevel(double wl[2])
        """
        pass

    def GetWorldThicknessLabelPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetWorldThicknessLabelPosition(self, pos:[float, float, float])
            -> None
        C++: virtual void GetWorldThicknessLabelPosition(double pos[3])
        """
        pass

    def InitializeReslicePlane(self): # real signature unknown; restored from __doc__
        """
        InitializeReslicePlane(self) -> None
        C++: virtual void InitializeReslicePlane()
        
        Initialize the reslice planes and the camera center. This is done
        automatically, the first time we render.
        """
        pass

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        Return 1 if this class is the same type of (or a subclass of) the
        named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type is the same type of (or a subclass
        of) the named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def ManageTextDisplay(self): # real signature unknown; restored from __doc__
        """
        ManageTextDisplay(self) -> None
        C++: void ManageTextDisplay()
        """
        pass

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkResliceCursorRepresentation
        C++: vtkResliceCursorRepresentation *NewInstance()
        """
        return vtkResliceCursorRepresentation

    def ResetCamera(self): # real signature unknown; restored from __doc__
        """
        ResetCamera(self) -> None
        C++: virtual void ResetCamera()
        """
        pass

    def RestrictPlaneToVolumeOff(self): # real signature unknown; restored from __doc__
        """
        RestrictPlaneToVolumeOff(self) -> None
        C++: virtual void RestrictPlaneToVolumeOff()
        """
        pass

    def RestrictPlaneToVolumeOn(self): # real signature unknown; restored from __doc__
        """
        RestrictPlaneToVolumeOn(self) -> None
        C++: virtual void RestrictPlaneToVolumeOn()
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkResliceCursorRepresentation
        C++: static vtkResliceCursorRepresentation *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkResliceCursorRepresentation

    def SetColorMap(self, __a): # real signature unknown; restored from __doc__
        """
        SetColorMap(self, __a:vtkImageMapToColors) -> None
        C++: virtual void SetColorMap(vtkImageMapToColors *)
        """
        pass

    def SetDisplayText(self, _arg): # real signature unknown; restored from __doc__
        """
        SetDisplayText(self, _arg:int) -> None
        C++: virtual void SetDisplayText(vtkTypeBool _arg)
        
        Enable/disable text display of window-level, image coordinates
        and scalar values in a render window.
        """
        pass

    def SetLookupTable(self, __a): # real signature unknown; restored from __doc__
        """
        SetLookupTable(self, __a:vtkScalarsToColors) -> None
        C++: virtual void SetLookupTable(vtkScalarsToColors *)
        
        Set/Get the internal lookuptable (lut) to one defined by the
        user, or, alternatively, to the lut of another Reslice cusror
        widget.  In this way, a set of three orthogonal planes can share
        the same lut so that window-levelling is performed uniformly
        among planes.  The default internal lut can be re- set/allocated
        by setting to 0 (nullptr).
        """
        pass

    def SetManipulationMode(self, m): # real signature unknown; restored from __doc__
        """
        SetManipulationMode(self, m:int) -> None
        C++: void SetManipulationMode(int m)
        
        INTERNAL - Do not use Set the manipulation mode. This is done by
        the widget
        """
        pass

    def SetRestrictPlaneToVolume(self, _arg): # real signature unknown; restored from __doc__
        """
        SetRestrictPlaneToVolume(self, _arg:int) -> None
        C++: virtual void SetRestrictPlaneToVolume(vtkTypeBool _arg)
        
        Make sure that the resliced image remains within the volume.
        Default is On.
        """
        pass

    def SetShowReslicedImage(self, _arg): # real signature unknown; restored from __doc__
        """
        SetShowReslicedImage(self, _arg:int) -> None
        C++: virtual void SetShowReslicedImage(vtkTypeBool _arg)
        
        Show the resliced image ?
        """
        pass

    def SetTextProperty(self, tprop): # real signature unknown; restored from __doc__
        """
        SetTextProperty(self, tprop:vtkTextProperty) -> None
        C++: void SetTextProperty(vtkTextProperty *tprop)
        
        Set/Get the text property for the image data and window-level
        annotation.
        """
        pass

    def SetThicknessLabelFormat(self, _arg): # real signature unknown; restored from __doc__
        """
        SetThicknessLabelFormat(self, _arg:str) -> None
        C++: virtual void SetThicknessLabelFormat(const char *_arg)
        
        Specify the format to use for labelling the distance. Note that
        an empty string results in no label, or a format string without a
        "%" character will not print the thickness value.
        """
        pass

    def SetTolerance(self, _arg): # real signature unknown; restored from __doc__
        """
        SetTolerance(self, _arg:int) -> None
        C++: virtual void SetTolerance(int _arg)
        
        The tolerance representing the distance to the representation (in
        pixels) in which the cursor is considered near enough to the
        representation to be active.
        """
        pass

    def SetUseImageActor(self, _arg): # real signature unknown; restored from __doc__
        """
        SetUseImageActor(self, _arg:int) -> None
        C++: virtual void SetUseImageActor(vtkTypeBool _arg)
        
        Render as a 2D image, or render as a plane with a texture in
        physical space.
        """
        pass

    def SetWindowLevel(self, window, level, copy=0): # real signature unknown; restored from __doc__
        """
        SetWindowLevel(self, window:float, level:float, copy:int=0)
            -> None
        C++: void SetWindowLevel(double window, double level, int copy=0)
        
        Set/Get the current window and level values.  SetWindowLevel
        should only be called after SetInput.  If a shared lookup table
        is being used, a callback is required to update the window level
        values without having to update the lookup table again.
        """
        pass

    def ShowReslicedImageOff(self): # real signature unknown; restored from __doc__
        """
        ShowReslicedImageOff(self) -> None
        C++: virtual void ShowReslicedImageOff()
        """
        pass

    def ShowReslicedImageOn(self): # real signature unknown; restored from __doc__
        """
        ShowReslicedImageOn(self) -> None
        C++: virtual void ShowReslicedImageOn()
        """
        pass

    def TransformPlane(self, planeToTransform, targetCenter, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        TransformPlane(planeToTransform:vtkPlaneSource,
            targetCenter:[float, float, float], targetNormal:[float,
            float, float], targetViewUp:[float, float, float]) -> None
        C++: static void TransformPlane(vtkPlaneSource *planeToTransform,
            double targetCenter[3], double targetNormal[3],
            double targetViewUp[3])
        
        First rotate planeToTransform to match targetPlane normal. Then
        rotate around targetNormal to enforce targetViewUp "up" vector
        (i.e. Origin->p2 ). There is an infinite number of options to
        rotate a plane normal to another. Here we attempt to preserve
        Origin, P1 and P2 when rotating around targetPlane.
        """
        pass

    def UseImageActorOff(self): # real signature unknown; restored from __doc__
        """
        UseImageActorOff(self) -> None
        C++: virtual void UseImageActorOff()
        """
        pass

    def UseImageActorOn(self): # real signature unknown; restored from __doc__
        """
        UseImageActorOn(self) -> None
        C++: virtual void UseImageActorOn()
        """
        pass

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    NearAxis1 = 2
    NearAxis2 = 3
    NearCenter = 1
    None_ = 0
    OnAxis1 = 5
    OnAxis2 = 6
    OnCenter = 4
    Outside = 0
    PanAndRotate = 1
    ResizeThickness = 3
    RotateBothAxes = 2
    TranslateSingleAxis = 5
    WindowLevelling = 4
    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkResliceCursorRepresentation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetTolerance': <method 'SetTolerance' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetToleranceMinValue': <method 'GetToleranceMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetToleranceMaxValue': <method 'GetToleranceMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetTolerance': <method 'GetTolerance' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetShowReslicedImage': <method 'SetShowReslicedImage' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetShowReslicedImage': <method 'GetShowReslicedImage' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'ShowReslicedImageOn': <method 'ShowReslicedImageOn' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'ShowReslicedImageOff': <method 'ShowReslicedImageOff' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetRestrictPlaneToVolume': <method 'SetRestrictPlaneToVolume' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetRestrictPlaneToVolume': <method 'GetRestrictPlaneToVolume' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'RestrictPlaneToVolumeOn': <method 'RestrictPlaneToVolumeOn' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'RestrictPlaneToVolumeOff': <method 'RestrictPlaneToVolumeOff' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetThicknessLabelFormat': <method 'SetThicknessLabelFormat' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetThicknessLabelFormat': <method 'GetThicknessLabelFormat' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetThicknessLabelText': <method 'GetThicknessLabelText' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetThicknessLabelPosition': <method 'GetThicknessLabelPosition' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetWorldThicknessLabelPosition': <method 'GetWorldThicknessLabelPosition' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetResliceAxes': <method 'GetResliceAxes' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetReslice': <method 'GetReslice' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetImageActor': <method 'GetImageActor' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetLookupTable': <method 'SetLookupTable' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetLookupTable': <method 'GetLookupTable' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetColorMap': <method 'GetColorMap' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetColorMap': <method 'SetColorMap' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetWindowLevel': <method 'SetWindowLevel' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetWindowLevel': <method 'GetWindowLevel' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetWindow': <method 'GetWindow' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetLevel': <method 'GetLevel' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetResliceCursor': <method 'GetResliceCursor' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetDisplayText': <method 'SetDisplayText' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetDisplayText': <method 'GetDisplayText' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'DisplayTextOn': <method 'DisplayTextOn' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'DisplayTextOff': <method 'DisplayTextOff' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetTextProperty': <method 'SetTextProperty' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetTextProperty': <method 'GetTextProperty' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetUseImageActor': <method 'SetUseImageActor' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetUseImageActor': <method 'GetUseImageActor' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'UseImageActorOn': <method 'UseImageActorOn' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'UseImageActorOff': <method 'UseImageActorOff' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'SetManipulationMode': <method 'SetManipulationMode' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetManipulationMode': <method 'GetManipulationMode' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'ActivateText': <method 'ActivateText' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'ManageTextDisplay': <method 'ManageTextDisplay' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'InitializeReslicePlane': <method 'InitializeReslicePlane' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'ResetCamera': <method 'ResetCamera' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetCursorAlgorithm': <method 'GetCursorAlgorithm' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'GetPlaneSource': <method 'GetPlaneSource' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'BoundPlane': <method 'BoundPlane' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'TransformPlane': <method 'TransformPlane' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, 'Outside': 0, 'NearCenter': 1, 'NearAxis1': 2, 'NearAxis2': 3, 'OnCenter': 4, 'OnAxis1': 5, 'OnAxis2': 6, 'None_': 0, 'PanAndRotate': 1, 'RotateBothAxes': 2, 'ResizeThickness': 3, 'WindowLevelling': 4, 'TranslateSingleAxis': 5, '__new__': <built-in method __new__ of type object at 0x00007FF81D65FAC0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkResliceCursorRepresentation' objects>, '__doc__': 'vtkResliceCursorRepresentation - represent the vtkResliceCursorWidget\\n\\nSuperclass: vtkWidgetRepresentation\\n\\nThis class is the base class for the reslice cursor representation\\nsubclasses. It represents a cursor that may be interactively\\ntranslated, rotated through an image and perform thick / thick\\nreformats.\\n@sa\\nvtkResliceCursorLineRepresentation\\nvtkResliceCursorThickLineRepresentation vtkResliceCursorWidget\\nvtkResliceCursor\\n\\n'})"
    __vtkname__ = 'vtkResliceCursorRepresentation'


