# 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 vtkDistanceRepresentation(vtkWidgetRepresentation):
    """
    vtkDistanceRepresentation - represent the vtkDistanceWidget
    
    Superclass: vtkWidgetRepresentation
    
    The vtkDistanceRepresentation is a superclass for various types of
    representations for the vtkDistanceWidget. Logically subclasses
    consist of an axis and two handles for placing/manipulating the end
    points.
    
    @sa
    vtkDistanceWidget vtkHandleRepresentation vtkDistanceRepresentation2D
    vtkDistanceRepresentation
    """
    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 ComplexInteraction(self, iren, widget, event, calldata): # real signature unknown; restored from __doc__
        """
        ComplexInteraction(self, iren:vtkRenderWindowInteractor,
            widget:vtkAbstractWidget, event:int, calldata:Pointer) -> None
        C++: void ComplexInteraction(vtkRenderWindowInteractor *iren,
            vtkAbstractWidget *widget, unsigned long event,
            void *calldata) override;
        """
        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++: int ComputeComplexInteractionState(
            vtkRenderWindowInteractor *iren, vtkAbstractWidget *widget,
            unsigned long event, void *calldata, int modify=0) override;
        """
        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++: int ComputeInteractionState(int X, int Y, int modify=0)
            override;
        """
        return 0

    def GetDistance(self): # real signature unknown; restored from __doc__
        """
        GetDistance(self) -> float
        C++: virtual double GetDistance()
        
        This representation and all subclasses must keep a distance
        consistent with the state of the widget.
        """
        return 0.0

    def GetLabelFormat(self): # real signature unknown; restored from __doc__
        """
        GetLabelFormat(self) -> str
        C++: virtual char *GetLabelFormat()
        """
        return ""

    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 GetNumberOfRulerTicks(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfRulerTicks(self) -> int
        C++: virtual int GetNumberOfRulerTicks()
        """
        return 0

    def GetNumberOfRulerTicksMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfRulerTicksMaxValue(self) -> int
        C++: virtual int GetNumberOfRulerTicksMaxValue()
        """
        return 0

    def GetNumberOfRulerTicksMinValue(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfRulerTicksMinValue(self) -> int
        C++: virtual int GetNumberOfRulerTicksMinValue()
        """
        return 0

    def GetPoint1DisplayPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetPoint1DisplayPosition(self, pos:[float, float, float]) -> None
        C++: virtual void GetPoint1DisplayPosition(double pos[3])
        """
        pass

    def GetPoint1Representation(self): # real signature unknown; restored from __doc__
        """
        GetPoint1Representation(self) -> vtkHandleRepresentation
        C++: virtual vtkHandleRepresentation *GetPoint1Representation()
        
        Set/Get the two handle representations used for the
        vtkDistanceWidget. (Note: properties can be set by grabbing these
        representations and setting the properties appropriately.)
        """
        return vtkHandleRepresentation

    def GetPoint1WorldPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetPoint1WorldPosition(self, pos:[float, float, float]) -> None
        C++: virtual void GetPoint1WorldPosition(double pos[3])
        GetPoint1WorldPosition(self) -> (float, float, float)
        C++: virtual double *GetPoint1WorldPosition()
        
        Methods to Set/Get the coordinates of the two points defining
        this representation. Note that methods are available for both
        display and world coordinates.
        """
        pass

    def GetPoint2DisplayPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetPoint2DisplayPosition(self, pos:[float, float, float]) -> None
        C++: virtual void GetPoint2DisplayPosition(double pos[3])
        """
        pass

    def GetPoint2Representation(self): # real signature unknown; restored from __doc__
        """
        GetPoint2Representation(self) -> vtkHandleRepresentation
        C++: virtual vtkHandleRepresentation *GetPoint2Representation()
        """
        return vtkHandleRepresentation

    def GetPoint2WorldPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetPoint2WorldPosition(self, pos:[float, float, float]) -> None
        C++: virtual void GetPoint2WorldPosition(double pos[3])
        GetPoint2WorldPosition(self) -> (float, float, float)
        C++: virtual double *GetPoint2WorldPosition()
        """
        pass

    def GetRulerDistance(self): # real signature unknown; restored from __doc__
        """
        GetRulerDistance(self) -> float
        C++: virtual double GetRulerDistance()
        """
        return 0.0

    def GetRulerDistanceMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetRulerDistanceMaxValue(self) -> float
        C++: virtual double GetRulerDistanceMaxValue()
        """
        return 0.0

    def GetRulerDistanceMinValue(self): # real signature unknown; restored from __doc__
        """
        GetRulerDistanceMinValue(self) -> float
        C++: virtual double GetRulerDistanceMinValue()
        """
        return 0.0

    def GetRulerMode(self): # real signature unknown; restored from __doc__
        """
        GetRulerMode(self) -> int
        C++: virtual vtkTypeBool GetRulerMode()
        """
        return 0

    def GetScale(self): # real signature unknown; restored from __doc__
        """
        GetScale(self) -> float
        C++: virtual double GetScale()
        """
        return 0.0

    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 InstantiateHandleRepresentation(self): # real signature unknown; restored from __doc__
        """
        InstantiateHandleRepresentation(self) -> None
        C++: void InstantiateHandleRepresentation()
        """
        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 NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkDistanceRepresentation
        C++: vtkDistanceRepresentation *NewInstance()
        """
        return vtkDistanceRepresentation

    def RulerModeOff(self): # real signature unknown; restored from __doc__
        """
        RulerModeOff(self) -> None
        C++: virtual void RulerModeOff()
        """
        pass

    def RulerModeOn(self): # real signature unknown; restored from __doc__
        """
        RulerModeOn(self) -> None
        C++: virtual void RulerModeOn()
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkDistanceRepresentation
        C++: static vtkDistanceRepresentation *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkDistanceRepresentation

    def SetHandleRepresentation(self, handle): # real signature unknown; restored from __doc__
        """
        SetHandleRepresentation(self, handle:vtkHandleRepresentation)
            -> None
        C++: void SetHandleRepresentation(vtkHandleRepresentation *handle)
        
        This method is used to specify the type of handle representation
        to use for the two internal vtkHandleWidgets within
        vtkDistanceWidget. To use this method, create a dummy
        vtkHandleWidget (or subclass), and then invoke this method with
        this dummy. Then the vtkDistanceRepresentation uses this dummy to
        clone two vtkHandleWidgets of the same type. Make sure you set
        the handle representation before the widget is enabled. (The
        method InstantiateHandleRepresentation() is invoked by the
        vtkDistance widget.)
        """
        pass

    def SetLabelFormat(self, _arg): # real signature unknown; restored from __doc__
        """
        SetLabelFormat(self, _arg:str) -> None
        C++: virtual void SetLabelFormat(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 distance value.
        """
        pass

    def SetNumberOfRulerTicks(self, _arg): # real signature unknown; restored from __doc__
        """
        SetNumberOfRulerTicks(self, _arg:int) -> None
        C++: virtual void SetNumberOfRulerTicks(int _arg)
        
        Specify the number of major ruler ticks. This overrides any
        subclasses (e.g., vtkDistanceRepresentation2D) that have
        alternative methods to specify the number of major ticks. Note:
        the number of ticks is the number between the two handle
        endpoints. This ivar only has effect when the RulerMode is off.
        """
        pass

    def SetPoint1DisplayPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint1DisplayPosition(self, pos:[float, float, float]) -> None
        C++: virtual void SetPoint1DisplayPosition(double pos[3])
        """
        pass

    def SetPoint1WorldPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint1WorldPosition(self, pos:[float, float, float]) -> None
        C++: virtual void SetPoint1WorldPosition(double pos[3])
        """
        pass

    def SetPoint2DisplayPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint2DisplayPosition(self, pos:[float, float, float]) -> None
        C++: virtual void SetPoint2DisplayPosition(double pos[3])
        """
        pass

    def SetPoint2WorldPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint2WorldPosition(self, pos:[float, float, float]) -> None
        C++: virtual void SetPoint2WorldPosition(double pos[3])
        """
        pass

    def SetRulerDistance(self, _arg): # real signature unknown; restored from __doc__
        """
        SetRulerDistance(self, _arg:float) -> None
        C++: virtual void SetRulerDistance(double _arg)
        
        Specify the RulerDistance which indicates the spacing of the
        major ticks. This ivar only has effect when the RulerMode is on.
        """
        pass

    def SetRulerMode(self, _arg): # real signature unknown; restored from __doc__
        """
        SetRulerMode(self, _arg:int) -> None
        C++: virtual void SetRulerMode(vtkTypeBool _arg)
        
        Enable or disable ruler mode. When enabled, the ticks on the
        distance widget are separated by the amount specified by
        RulerDistance. Otherwise, the ivar NumberOfRulerTicks is used to
        draw the tick marks.
        """
        pass

    def SetScale(self, _arg): # real signature unknown; restored from __doc__
        """
        SetScale(self, _arg:float) -> None
        C++: virtual void SetScale(double _arg)
        
        Set the scale factor from VTK world coordinates. The ruler marks
        and label will be defined in terms of the scaled space. For
        example, if the VTK world coordinates are assumed to be in
        inches, but the desired distance units should be defined in terms
        of centimeters, the scale factor should be set to 2.54. The ruler
        marks will then be spaced in terms of centimeters, and the label
        will show the measurement in centimeters.
        """
        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 widget (in pixels)
        in which the cursor is considered near enough to the end points
        of the widget to be active.
        """
        pass

    def StartComplexInteraction(self, iren, widget, event, calldata): # real signature unknown; restored from __doc__
        """
        StartComplexInteraction(self, iren:vtkRenderWindowInteractor,
            widget:vtkAbstractWidget, event:int, calldata:Pointer) -> None
        C++: void StartComplexInteraction(vtkRenderWindowInteractor *iren,
             vtkAbstractWidget *widget, unsigned long event,
            void *calldata) override;
        """
        pass

    def StartWidgetInteraction(self, e, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        StartWidgetInteraction(self, e:[float, float]) -> None
        C++: void StartWidgetInteraction(double e[2]) override;
        """
        pass

    def WidgetInteraction(self, e, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        WidgetInteraction(self, e:[float, float]) -> None
        C++: void WidgetInteraction(double e[2]) override;
        """
        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."""


    NearP1 = 1
    NearP2 = 2
    Outside = 0
    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkDistanceRepresentation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetDistance': <method 'GetDistance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetPoint1WorldPosition': <method 'GetPoint1WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetPoint2WorldPosition': <method 'GetPoint2WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetPoint1DisplayPosition': <method 'SetPoint1DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetPoint2DisplayPosition': <method 'SetPoint2DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetPoint1DisplayPosition': <method 'GetPoint1DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetPoint2DisplayPosition': <method 'GetPoint2DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetPoint1WorldPosition': <method 'SetPoint1WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetPoint2WorldPosition': <method 'SetPoint2WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetHandleRepresentation': <method 'SetHandleRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'InstantiateHandleRepresentation': <method 'InstantiateHandleRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetPoint1Representation': <method 'GetPoint1Representation' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetPoint2Representation': <method 'GetPoint2Representation' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetTolerance': <method 'SetTolerance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetToleranceMinValue': <method 'GetToleranceMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetToleranceMaxValue': <method 'GetToleranceMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetTolerance': <method 'GetTolerance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetLabelFormat': <method 'SetLabelFormat' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetLabelFormat': <method 'GetLabelFormat' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetScale': <method 'SetScale' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetScale': <method 'GetScale' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetRulerMode': <method 'SetRulerMode' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetRulerMode': <method 'GetRulerMode' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'RulerModeOn': <method 'RulerModeOn' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'RulerModeOff': <method 'RulerModeOff' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetRulerDistance': <method 'SetRulerDistance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetRulerDistanceMinValue': <method 'GetRulerDistanceMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetRulerDistanceMaxValue': <method 'GetRulerDistanceMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetRulerDistance': <method 'GetRulerDistance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'SetNumberOfRulerTicks': <method 'SetNumberOfRulerTicks' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetNumberOfRulerTicksMinValue': <method 'GetNumberOfRulerTicksMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetNumberOfRulerTicksMaxValue': <method 'GetNumberOfRulerTicksMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'GetNumberOfRulerTicks': <method 'GetNumberOfRulerTicks' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'ComputeInteractionState': <method 'ComputeInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'StartWidgetInteraction': <method 'StartWidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'WidgetInteraction': <method 'WidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'StartComplexInteraction': <method 'StartComplexInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'ComplexInteraction': <method 'ComplexInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'ComputeComplexInteractionState': <method 'ComputeComplexInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, 'Outside': 0, 'NearP1': 1, 'NearP2': 2, '__new__': <built-in method __new__ of type object at 0x00007FF81D647010>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation' objects>, '__doc__': 'vtkDistanceRepresentation - represent the vtkDistanceWidget\\n\\nSuperclass: vtkWidgetRepresentation\\n\\nThe vtkDistanceRepresentation is a superclass for various types of\\nrepresentations for the vtkDistanceWidget. Logically subclasses\\nconsist of an axis and two handles for placing/manipulating the end\\npoints.\\n\\n@sa\\nvtkDistanceWidget vtkHandleRepresentation vtkDistanceRepresentation2D\\nvtkDistanceRepresentation\\n\\n'})"
    __vtkname__ = 'vtkDistanceRepresentation'


