# 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


class vtkWidgetRepresentation(__vtkmodules_vtkRenderingCore.vtkProp):
    """
    vtkWidgetRepresentation - abstract class defines interface between
    the widget and widget representation classes
    
    Superclass: vtkProp
    
    This class is used to define the API for, and partially implement, a
    representation for different types of widgets. Note that the widget
    representation (i.e., subclasses of vtkWidgetRepresentation) are a
    type of vtkProp; meaning that they can be associated with a
    vtkRenderer end embedded in a scene like any other vtkActor. However,
    vtkWidgetRepresentation also defines an API that enables it to be
    paired with a subclass vtkAbstractWidget, meaning that it can be
    driven by a widget, serving to represent the widget as the widget
    responds to registered events.
    
    The API defined here should be regarded as a guideline for
    implementing widgets and widget representations. Widget behavior is
    complex, as is the way the representation responds to the registered
    widget events, so the API may vary from widget to widget to reflect
    this complexity.
    
    @warning
    The separation of the widget event handling and representation
    enables users and developers to create new appearances for the
    widget. It also facilitates parallel processing, where the client
    application handles events, and remote representations of the widget
    are slaves to the client (and do not handle events).
    """
    def BuildRepresentation(self): # real signature unknown; restored from __doc__
        """
        BuildRepresentation(self) -> None
        C++: virtual void BuildRepresentation()
        """
        pass

    def ComplexInteraction(self, __a, __b, __c, __d): # real signature unknown; restored from __doc__
        """
        ComplexInteraction(self, __a:vtkRenderWindowInteractor,
            __b:vtkAbstractWidget, __c:int, __d:Pointer) -> None
        C++: virtual void ComplexInteraction(vtkRenderWindowInteractor *,
            vtkAbstractWidget *, unsigned long, void *)
        """
        pass

    def ComputeComplexInteractionState(self, iren, widget, event, callData, modify=0): # real signature unknown; restored from __doc__
        """
        ComputeComplexInteractionState(self,
            iren:vtkRenderWindowInteractor, widget:vtkAbstractWidget,
            event:int, callData:Pointer, modify:int=0) -> int
        C++: virtual int ComputeComplexInteractionState(
            vtkRenderWindowInteractor *iren, vtkAbstractWidget *widget,
            unsigned long event, void *callData, int modify=0)
        """
        return 0

    def ComputeInteractionState(self, X, Y, modify=0): # real signature unknown; restored from __doc__
        """
        ComputeInteractionState(self, X:int, Y:int, modify:int=0) -> int
        C++: virtual int ComputeInteractionState(int X, int Y,
            int modify=0)
        """
        return 0

    def EndComplexInteraction(self, __a, __b, __c, __d): # real signature unknown; restored from __doc__
        """
        EndComplexInteraction(self, __a:vtkRenderWindowInteractor,
            __b:vtkAbstractWidget, __c:int, __d:Pointer) -> None
        C++: virtual void EndComplexInteraction(
            vtkRenderWindowInteractor *, vtkAbstractWidget *,
            unsigned long, void *)
        """
        pass

    def EndWidgetInteraction(self, newEventPos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        EndWidgetInteraction(self, newEventPos:[float, float]) -> None
        C++: virtual void EndWidgetInteraction(double newEventPos[2])
        """
        pass

    def GetActors(self, __a): # real signature unknown; restored from __doc__
        """
        GetActors(self, __a:vtkPropCollection) -> None
        C++: void GetActors(vtkPropCollection *) override;
        
        For some exporters and other other operations we must be able to
        collect all the actors or volumes. These methods are used in that
        process.
        """
        pass

    def GetActors2D(self, __a): # real signature unknown; restored from __doc__
        """
        GetActors2D(self, __a:vtkPropCollection) -> None
        C++: void GetActors2D(vtkPropCollection *) override;
        """
        pass

    def GetBounds(self): # real signature unknown; restored from __doc__
        """
        GetBounds(self) -> (float, float, float, float, float, float)
        C++: double *GetBounds() override;
        
        Methods to make this class behave as a vtkProp. They are repeated
        here (from the vtkProp superclass) as a reminder to the widget
        implementor. Failure to implement these methods properly may
        result in the representation not appearing in the scene (i.e.,
        not implementing the Render() methods properly) or leaking
        graphics resources (i.e., not implementing
        ReleaseGraphicsResources() properly).
        """
        pass

    def GetHandleSize(self): # real signature unknown; restored from __doc__
        """
        GetHandleSize(self) -> float
        C++: virtual double GetHandleSize()
        """
        return 0.0

    def GetHandleSizeMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetHandleSizeMaxValue(self) -> float
        C++: virtual double GetHandleSizeMaxValue()
        """
        return 0.0

    def GetHandleSizeMinValue(self): # real signature unknown; restored from __doc__
        """
        GetHandleSizeMinValue(self) -> float
        C++: virtual double GetHandleSizeMinValue()
        """
        return 0.0

    def GetInteractionState(self): # real signature unknown; restored from __doc__
        """
        GetInteractionState(self) -> int
        C++: virtual int GetInteractionState()
        """
        return 0

    def GetNeedToRender(self): # real signature unknown; restored from __doc__
        """
        GetNeedToRender(self) -> int
        C++: virtual vtkTypeBool GetNeedToRender()
        
        Some subclasses use this data member to keep track of whether to
        render or not (i.e., to minimize the total number of renders).
        """
        return 0

    def GetNeedToRenderMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetNeedToRenderMaxValue(self) -> int
        C++: virtual vtkTypeBool GetNeedToRenderMaxValue()
        """
        return 0

    def GetNeedToRenderMinValue(self): # real signature unknown; restored from __doc__
        """
        GetNeedToRenderMinValue(self) -> int
        C++: virtual vtkTypeBool GetNeedToRenderMinValue()
        """
        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 GetPickingManaged(self): # real signature unknown; restored from __doc__
        """
        GetPickingManaged(self) -> bool
        C++: virtual bool GetPickingManaged()
        """
        return False

    def GetPlaceFactor(self): # real signature unknown; restored from __doc__
        """
        GetPlaceFactor(self) -> float
        C++: virtual double GetPlaceFactor()
        """
        return 0.0

    def GetPlaceFactorMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetPlaceFactorMaxValue(self) -> float
        C++: virtual double GetPlaceFactorMaxValue()
        """
        return 0.0

    def GetPlaceFactorMinValue(self): # real signature unknown; restored from __doc__
        """
        GetPlaceFactorMinValue(self) -> float
        C++: virtual double GetPlaceFactorMinValue()
        """
        return 0.0

    def GetRenderer(self): # real signature unknown; restored from __doc__
        """
        GetRenderer(self) -> vtkRenderer
        C++: virtual vtkRenderer *GetRenderer()
        """
        pass

    def GetVolumes(self, __a): # real signature unknown; restored from __doc__
        """
        GetVolumes(self, __a:vtkPropCollection) -> None
        C++: void GetVolumes(vtkPropCollection *) override;
        """
        pass

    def HasTranslucentPolygonalGeometry(self): # real signature unknown; restored from __doc__
        """
        HasTranslucentPolygonalGeometry(self) -> int
        C++: vtkTypeBool HasTranslucentPolygonalGeometry() override;
        
        WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT
        USE THESE METHODS OUTSIDE OF THE RENDERING PROCESS Does this prop
        have some translucent polygonal geometry? This method is called
        during the rendering process to know if there is some translucent
        polygonal geometry. A simple prop that has some translucent
        polygonal geometry will return true. A composite prop (like
        vtkAssembly) that has at least one sub-prop that has some
        translucent polygonal geometry will return true. Default
        implementation return false.
        """
        return 0

    def Highlight(self, highlightOn): # real signature unknown; restored from __doc__
        """
        Highlight(self, highlightOn:int) -> None
        C++: virtual void Highlight(int highlightOn)
        """
        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 NeedToRenderOff(self): # real signature unknown; restored from __doc__
        """
        NeedToRenderOff(self) -> None
        C++: virtual void NeedToRenderOff()
        """
        pass

    def NeedToRenderOn(self): # real signature unknown; restored from __doc__
        """
        NeedToRenderOn(self) -> None
        C++: virtual void NeedToRenderOn()
        """
        pass

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkWidgetRepresentation
        C++: vtkWidgetRepresentation *NewInstance()
        """
        return vtkWidgetRepresentation

    def PickingManagedOff(self): # real signature unknown; restored from __doc__
        """
        PickingManagedOff(self) -> None
        C++: virtual void PickingManagedOff()
        """
        pass

    def PickingManagedOn(self): # real signature unknown; restored from __doc__
        """
        PickingManagedOn(self) -> None
        C++: virtual void PickingManagedOn()
        
        Enable/Disable the use of a manager to process the picking.
        Enabled by default.
        """
        pass

    def PlaceWidget(self, bounds, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        PlaceWidget(self, bounds:[float, float, float, float, float,
            float]) -> None
        C++: virtual void PlaceWidget(double bounds[6])
        
        The following is a suggested API for widget representations.
        These methods define the communication between the widget and its
        representation. These methods are only suggestions because
        widgets take on so many different forms that a universal API is
        not deemed practical. However, these methods should be
        implemented when possible to ensure that the VTK widget hierarchy
        remains self-consistent.
        
        PlaceWidget() - given a bounding box
        (xmin,xmax,ymin,ymax,zmin,zmax), place the widget inside of it.
        The current orientation of the widget is preserved, only scaling
        and translation is performed. StartWidgetInteraction() -
        generally corresponds to a initial event (e.g., mouse down) that
        starts the interaction process with the widget.
        WidgetInteraction() - invoked when an event causes the widget to
        change appearance. EndWidgetInteraction() - generally corresponds
        to a final event (e.g., mouse up) and completes the interaction
        sequence. ComputeInteractionState() - given (X,Y) display
        coordinates in a renderer, with a possible flag that modifies the
        computation, what is the state of the widget?
        GetInteractionState() - return the current state of the widget.
        Note that the value of "0" typically refers to "outside". The
        interaction state is strictly a function of the representation,
        and the widget/represent must agree on what they mean.
        Highlight() - turn on or off any highlights associated with the
        widget. Highlights are generally turned on when the widget is
        selected.  Note that subclasses may ignore some of these methods
        and implement their own depending on the specifics of the widget.
        """
        pass

    def RegisterPickers(self): # real signature unknown; restored from __doc__
        """
        RegisterPickers(self) -> None
        C++: virtual void RegisterPickers()
        
        Register internal Pickers in the Picking Manager. Must be
        reimplemented by concrete widget representations to register
        their pickers.
        """
        pass

    def ReleaseGraphicsResources(self, __a): # real signature unknown; restored from __doc__
        """
        ReleaseGraphicsResources(self, __a:vtkWindow) -> None
        C++: void ReleaseGraphicsResources(vtkWindow *) override;
        
        WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release
        any graphics resources that are being consumed by this actor. The
        parameter window could be used to determine which graphic
        resources to release.
        """
        pass

    def RenderOpaqueGeometry(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderOpaqueGeometry(self, viewport:vtkViewport) -> int
        C++: int RenderOpaqueGeometry(vtkViewport *viewport) override;
        
        WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT
        USE THESE METHODS OUTSIDE OF THE RENDERING PROCESS All concrete
        subclasses must be able to render themselves. There are four key
        render methods in vtk and they correspond to four different
        points in the rendering cycle. Any given prop may implement one
        or more of these methods. The first method is intended for
        rendering all opaque geometry. The second method is intended for
        rendering all translucent polygonal geometry. The third one is
        intended for rendering all translucent volumetric geometry. Most
        of the volume rendering mappers draw their results during this
        third method. The last method is to render any 2D annotation or
        overlays. Each of these methods return an integer value
        indicating whether or not this render method was applied to this
        data.
        """
        return 0

    def RenderOverlay(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderOverlay(self, viewport:vtkViewport) -> int
        C++: int RenderOverlay(vtkViewport *viewport) override;
        """
        return 0

    def RenderTranslucentPolygonalGeometry(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderTranslucentPolygonalGeometry(self, viewport:vtkViewport)
            -> int
        C++: int RenderTranslucentPolygonalGeometry(vtkViewport *viewport)
             override;
        """
        return 0

    def RenderVolumetricGeometry(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderVolumetricGeometry(self, viewport:vtkViewport) -> int
        C++: int RenderVolumetricGeometry(vtkViewport *viewport) override;
        """
        return 0

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkWidgetRepresentation
        C++: static vtkWidgetRepresentation *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkWidgetRepresentation

    def SetHandleSize(self, _arg): # real signature unknown; restored from __doc__
        """
        SetHandleSize(self, _arg:float) -> None
        C++: virtual void SetHandleSize(double _arg)
        
        Set/Get the factor that controls the size of the handles that
        appear as part of the widget (if any). These handles (like
        spheres, etc.)  are used to manipulate the widget. The HandleSize
        data member allows you to change the relative size of the
        handles. Note that while the handle size is typically expressed
        in pixels, some subclasses may use a relative size with respect
        to the viewport. (As a corollary, the value of this ivar is often
        set by subclasses of this class during instance instantiation.)
        """
        pass

    def SetNeedToRender(self, _arg): # real signature unknown; restored from __doc__
        """
        SetNeedToRender(self, _arg:int) -> None
        C++: virtual void SetNeedToRender(vtkTypeBool _arg)
        """
        pass

    def SetPickingManaged(self, managed): # real signature unknown; restored from __doc__
        """
        SetPickingManaged(self, managed:bool) -> None
        C++: void SetPickingManaged(bool managed)
        """
        pass

    def SetPlaceFactor(self, _arg): # real signature unknown; restored from __doc__
        """
        SetPlaceFactor(self, _arg:float) -> None
        C++: virtual void SetPlaceFactor(double _arg)
        
        Set/Get a factor representing the scaling of the widget upon
        placement (via the PlaceWidget() method). Normally the widget is
        placed so that it just fits within the bounding box defined in
        PlaceWidget(bounds). The PlaceFactor will make the widget larger
        (PlaceFactor > 1) or smaller (PlaceFactor < 1). By default,
        PlaceFactor is set to 0.5.
        """
        pass

    def SetRenderer(self, ren): # real signature unknown; restored from __doc__
        """
        SetRenderer(self, ren:vtkRenderer) -> None
        C++: virtual void SetRenderer(vtkRenderer *ren)
        
        Subclasses of vtkWidgetRepresentation must implement these
        methods. This is considered the minimum API for a widget
        representation.
        
        SetRenderer() - the renderer in which the representations draws
        itself. Typically the renderer is set by the associated widget.
        Use the widget's SetCurrentRenderer() method in most cases;
        otherwise there is a risk of inconsistent behavior as events and
        drawing may be performed in different viewports.
        BuildRepresentation() - update the geometry of the widget based
        on its current state.  WARNING: The renderer is NOT reference
        counted by the representation, in order to avoid reference loops.
         Be sure that the representation lifetime does not extend beyond
        the renderer lifetime.
        """
        pass

    def ShallowCopy(self, prop): # real signature unknown; restored from __doc__
        """
        ShallowCopy(self, prop:vtkProp) -> None
        C++: void ShallowCopy(vtkProp *prop) override;
        
        Shallow copy of this vtkProp.
        """
        pass

    def StartComplexInteraction(self, __a, __b, __c, __d): # real signature unknown; restored from __doc__
        """
        StartComplexInteraction(self, __a:vtkRenderWindowInteractor,
            __b:vtkAbstractWidget, __c:int, __d:Pointer) -> None
        C++: virtual void StartComplexInteraction(
            vtkRenderWindowInteractor *, vtkAbstractWidget *,
            unsigned long, void *)
        """
        pass

    def StartWidgetInteraction(self, eventPos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        StartWidgetInteraction(self, eventPos:[float, float]) -> None
        C++: virtual void StartWidgetInteraction(double eventPos[2])
        """
        pass

    def UnRegisterPickers(self): # real signature unknown; restored from __doc__
        """
        UnRegisterPickers(self) -> None
        C++: virtual void UnRegisterPickers()
        
        Unregister internal pickers from the Picking Manager.
        """
        pass

    def WidgetInteraction(self, newEventPos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        WidgetInteraction(self, newEventPos:[float, float]) -> None
        C++: virtual void WidgetInteraction(double newEventPos[2])
        """
        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."""


    Axis = None # (!) real value is "<class 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation.Axis'>"
    NONE = -1
    XAxis = 0
    YAxis = 1
    ZAxis = 2
    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkWidgetRepresentation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'PickingManagedOn': <method 'PickingManagedOn' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'PickingManagedOff': <method 'PickingManagedOff' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'SetPickingManaged': <method 'SetPickingManaged' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetPickingManaged': <method 'GetPickingManaged' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'SetRenderer': <method 'SetRenderer' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetRenderer': <method 'GetRenderer' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'PlaceWidget': <method 'PlaceWidget' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'StartWidgetInteraction': <method 'StartWidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'WidgetInteraction': <method 'WidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'EndWidgetInteraction': <method 'EndWidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'ComputeInteractionState': <method 'ComputeInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetInteractionState': <method 'GetInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'Highlight': <method 'Highlight' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'StartComplexInteraction': <method 'StartComplexInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'ComplexInteraction': <method 'ComplexInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'EndComplexInteraction': <method 'EndComplexInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'ComputeComplexInteractionState': <method 'ComputeComplexInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'SetPlaceFactor': <method 'SetPlaceFactor' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetPlaceFactorMinValue': <method 'GetPlaceFactorMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetPlaceFactorMaxValue': <method 'GetPlaceFactorMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetPlaceFactor': <method 'GetPlaceFactor' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'SetHandleSize': <method 'SetHandleSize' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetHandleSizeMinValue': <method 'GetHandleSizeMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetHandleSizeMaxValue': <method 'GetHandleSizeMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetHandleSize': <method 'GetHandleSize' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetNeedToRender': <method 'GetNeedToRender' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'SetNeedToRender': <method 'SetNeedToRender' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetNeedToRenderMinValue': <method 'GetNeedToRenderMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetNeedToRenderMaxValue': <method 'GetNeedToRenderMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'NeedToRenderOn': <method 'NeedToRenderOn' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'NeedToRenderOff': <method 'NeedToRenderOff' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetBounds': <method 'GetBounds' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'ShallowCopy': <method 'ShallowCopy' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetActors': <method 'GetActors' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetActors2D': <method 'GetActors2D' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'GetVolumes': <method 'GetVolumes' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'ReleaseGraphicsResources': <method 'ReleaseGraphicsResources' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'RenderOverlay': <method 'RenderOverlay' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'RenderOpaqueGeometry': <method 'RenderOpaqueGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'RenderTranslucentPolygonalGeometry': <method 'RenderTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'RenderVolumetricGeometry': <method 'RenderVolumetricGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'HasTranslucentPolygonalGeometry': <method 'HasTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'RegisterPickers': <method 'RegisterPickers' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'UnRegisterPickers': <method 'UnRegisterPickers' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, 'Axis': <class 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation.Axis'>, 'NONE': -1, 'XAxis': 0, 'YAxis': 1, 'ZAxis': 2, '__new__': <built-in method __new__ of type object at 0x00007FF81D669F10>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkWidgetRepresentation' objects>, '__doc__': 'vtkWidgetRepresentation - abstract class defines interface between\\nthe widget and widget representation classes\\n\\nSuperclass: vtkProp\\n\\nThis class is used to define the API for, and partially implement, a\\nrepresentation for different types of widgets. Note that the widget\\nrepresentation (i.e., subclasses of vtkWidgetRepresentation) are a\\ntype of vtkProp; meaning that they can be associated with a\\nvtkRenderer end embedded in a scene like any other vtkActor. However,\\nvtkWidgetRepresentation also defines an API that enables it to be\\npaired with a subclass vtkAbstractWidget, meaning that it can be\\ndriven by a widget, serving to represent the widget as the widget\\nresponds to registered events.\\n\\nThe API defined here should be regarded as a guideline for\\nimplementing widgets and widget representations. Widget behavior is\\ncomplex, as is the way the representation responds to the registered\\nwidget events, so the API may vary from widget to widget to reflect\\nthis complexity.\\n\\n@warning\\nThe separation of the widget event handling and representation\\nenables users and developers to create new appearances for the\\nwidget. It also facilitates parallel processing, where the client\\napplication handles events, and remote representations of the widget\\nare slaves to the client (and do not handle events).\\n\\n'})"
    __vtkname__ = 'vtkWidgetRepresentation'


