# 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 .vtkDistanceRepresentation import vtkDistanceRepresentation

class vtkDistanceRepresentation3D(vtkDistanceRepresentation):
    """
    vtkDistanceRepresentation3D - represent the vtkDistanceWidget
    
    Superclass: vtkDistanceRepresentation
    
    The vtkDistanceRepresentation3D is a representation for the
    vtkDistanceWidget. This representation consists of a measuring line
    (axis) and two vtkHandleWidgets to place the end points of the line.
    Note that this particular widget draws its representation in 3D
    space, so the widget can be occluded.
    
    @sa
    vtkDistanceWidget vtkDistanceRepresentation
    vtkDistanceRepresentation2D
    """
    def BuildRepresentation(self): # real signature unknown; restored from __doc__
        """
        BuildRepresentation(self) -> None
        C++: void BuildRepresentation() override;
        
        Method to satisfy superclasses' API.
        """
        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 GetDistance(self): # real signature unknown; restored from __doc__
        """
        GetDistance(self) -> float
        C++: double GetDistance() override;
        
        Satisfy the superclasses API.
        """
        return 0.0

    def GetGlyphActor(self): # real signature unknown; restored from __doc__
        """
        GetGlyphActor(self) -> vtkActor
        C++: virtual vtkActor *GetGlyphActor()
        
        Convenience method to get the glyph actor. Using this it is
        possible to control the appearance of the glyphs.
        """
        pass

    def GetGlyphScale(self): # real signature unknown; restored from __doc__
        """
        GetGlyphScale(self) -> float
        C++: virtual double GetGlyphScale()
        """
        return 0.0

    def GetLabelActor(self): # real signature unknown; restored from __doc__
        """
        GetLabelActor(self) -> vtkFollower
        C++: virtual vtkFollower *GetLabelActor()
        
        Convenience method Get the label actor. It is possible to control
        the appearance of the label.
        """
        pass

    def GetLabelPosition(self): # real signature unknown; restored from __doc__
        """
        GetLabelPosition(self) -> float
        C++: virtual double GetLabelPosition()
        """
        return 0.0

    def GetLabelProperty(self): # real signature unknown; restored from __doc__
        """
        GetLabelProperty(self) -> vtkProperty
        C++: virtual vtkProperty *GetLabelProperty()
        
        Get the distance annotation property
        """
        pass

    def GetLabelScale(self): # real signature unknown; restored from __doc__
        """
        GetLabelScale(self) -> Pointer
        C++: virtual double *GetLabelScale()
        """
        pass

    def GetLineProperty(self): # real signature unknown; restored from __doc__
        """
        GetLineProperty(self) -> vtkProperty
        C++: virtual vtkProperty *GetLineProperty()
        
        Convenience method to get the line actor property.
        """
        pass

    def GetMaximumNumberOfRulerTicks(self): # real signature unknown; restored from __doc__
        """
        GetMaximumNumberOfRulerTicks(self) -> int
        C++: virtual int GetMaximumNumberOfRulerTicks()
        """
        return 0

    def GetMaximumNumberOfRulerTicksMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetMaximumNumberOfRulerTicksMaxValue(self) -> int
        C++: virtual int GetMaximumNumberOfRulerTicksMaxValue()
        """
        return 0

    def GetMaximumNumberOfRulerTicksMinValue(self): # real signature unknown; restored from __doc__
        """
        GetMaximumNumberOfRulerTicksMinValue(self) -> int
        C++: virtual int GetMaximumNumberOfRulerTicksMinValue()
        """
        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 GetPoint1DisplayPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetPoint1DisplayPosition(self, pos:[float, float, float]) -> None
        C++: void GetPoint1DisplayPosition(double pos[3]) override;
        """
        pass

    def GetPoint1WorldPosition(self): # real signature unknown; restored from __doc__
        """
        GetPoint1WorldPosition(self) -> (float, float, float)
        C++: double *GetPoint1WorldPosition() override;
        GetPoint1WorldPosition(self, pos:[float, float, float]) -> None
        C++: void GetPoint1WorldPosition(double pos[3]) override;
        
        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++: void GetPoint2DisplayPosition(double pos[3]) override;
        """
        pass

    def GetPoint2WorldPosition(self): # real signature unknown; restored from __doc__
        """
        GetPoint2WorldPosition(self) -> (float, float, float)
        C++: double *GetPoint2WorldPosition() override;
        GetPoint2WorldPosition(self, pos:[float, float, float]) -> None
        C++: void GetPoint2WorldPosition(double pos[3]) override;
        """
        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) -> vtkDistanceRepresentation3D
        C++: vtkDistanceRepresentation3D *NewInstance()
        """
        return vtkDistanceRepresentation3D

    def ReleaseGraphicsResources(self, w): # real signature unknown; restored from __doc__
        """
        ReleaseGraphicsResources(self, w:vtkWindow) -> None
        C++: void ReleaseGraphicsResources(vtkWindow *w) override;
        
        Methods required by vtkProp superclass.
        """
        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 RenderTranslucentPolygonalGeometry(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderTranslucentPolygonalGeometry(self, viewport:vtkViewport)
            -> int
        C++: int RenderTranslucentPolygonalGeometry(vtkViewport *viewport)
             override;
        """
        return 0

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkDistanceRepresentation3D
        C++: static vtkDistanceRepresentation3D *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkDistanceRepresentation3D

    def SetGlyphScale(self, scale): # real signature unknown; restored from __doc__
        """
        SetGlyphScale(self, scale:float) -> None
        C++: void SetGlyphScale(double scale)
        
        Scale the glyphs used as tick marks. By default it is 1/40th of
        the length.
        """
        pass

    def SetLabelActor(self, __a): # real signature unknown; restored from __doc__
        """
        SetLabelActor(self, __a:vtkFollower) -> None
        C++: virtual void SetLabelActor(vtkFollower *)
        """
        pass

    def SetLabelPosition(self, labelPosition): # real signature unknown; restored from __doc__
        """
        SetLabelPosition(self, labelPosition:float) -> None
        C++: void SetLabelPosition(double labelPosition)
        
        Set/Get position of the label title in normalized coordinates
        [0,1]. 0 is at the start of the line whereas 1 is at the end.
        """
        pass

    def SetLabelScale(self, x, y, z): # real signature unknown; restored from __doc__
        """
        SetLabelScale(self, x:float, y:float, z:float) -> None
        C++: void SetLabelScale(double x, double y, double z)
        SetLabelScale(self, scale:[float, float, float]) -> None
        C++: virtual void SetLabelScale(double scale[3])
        
        Scale text (font size along each dimension). This helps control
        the appearance of the 3D text.
        """
        pass

    def SetMaximumNumberOfRulerTicks(self, _arg): # real signature unknown; restored from __doc__
        """
        SetMaximumNumberOfRulerTicks(self, _arg:int) -> None
        C++: virtual void SetMaximumNumberOfRulerTicks(int _arg)
        
        Set/Get the maximum number of ticks in ruler mode.
        """
        pass

    def SetPoint1DisplayPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint1DisplayPosition(self, pos:[float, float, float]) -> None
        C++: void SetPoint1DisplayPosition(double pos[3]) override;
        """
        pass

    def SetPoint1WorldPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint1WorldPosition(self, pos:[float, float, float]) -> None
        C++: void SetPoint1WorldPosition(double pos[3]) override;
        """
        pass

    def SetPoint2DisplayPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint2DisplayPosition(self, pos:[float, float, float]) -> None
        C++: void SetPoint2DisplayPosition(double pos[3]) override;
        """
        pass

    def SetPoint2WorldPosition(self, pos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetPoint2WorldPosition(self, pos:[float, float, float]) -> None
        C++: void SetPoint2WorldPosition(double pos[3]) 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."""


    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkDistanceRepresentation3D', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetDistance': <method 'GetDistance' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetGlyphScale': <method 'SetGlyphScale' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetGlyphScale': <method 'GetGlyphScale' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetLineProperty': <method 'GetLineProperty' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetLabelPosition': <method 'SetLabelPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetLabelPosition': <method 'GetLabelPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetMaximumNumberOfRulerTicks': <method 'SetMaximumNumberOfRulerTicks' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetMaximumNumberOfRulerTicksMinValue': <method 'GetMaximumNumberOfRulerTicksMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetMaximumNumberOfRulerTicksMaxValue': <method 'GetMaximumNumberOfRulerTicksMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetMaximumNumberOfRulerTicks': <method 'GetMaximumNumberOfRulerTicks' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetGlyphActor': <method 'GetGlyphActor' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetLabelActor': <method 'GetLabelActor' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetLabelActor': <method 'SetLabelActor' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetPoint1WorldPosition': <method 'GetPoint1WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetPoint2WorldPosition': <method 'GetPoint2WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetPoint1WorldPosition': <method 'SetPoint1WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetPoint2WorldPosition': <method 'SetPoint2WorldPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetPoint1DisplayPosition': <method 'SetPoint1DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetPoint2DisplayPosition': <method 'SetPoint2DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetPoint1DisplayPosition': <method 'GetPoint1DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetPoint2DisplayPosition': <method 'GetPoint2DisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetBounds': <method 'GetBounds' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'ReleaseGraphicsResources': <method 'ReleaseGraphicsResources' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'RenderOpaqueGeometry': <method 'RenderOpaqueGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'RenderTranslucentPolygonalGeometry': <method 'RenderTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'SetLabelScale': <method 'SetLabelScale' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetLabelScale': <method 'GetLabelScale' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, 'GetLabelProperty': <method 'GetLabelProperty' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D647AB0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkDistanceRepresentation3D' objects>, '__doc__': 'vtkDistanceRepresentation3D - represent the vtkDistanceWidget\\n\\nSuperclass: vtkDistanceRepresentation\\n\\nThe vtkDistanceRepresentation3D is a representation for the\\nvtkDistanceWidget. This representation consists of a measuring line\\n(axis) and two vtkHandleWidgets to place the end points of the line.\\nNote that this particular widget draws its representation in 3D\\nspace, so the widget can be occluded.\\n\\n@sa\\nvtkDistanceWidget vtkDistanceRepresentation\\nvtkDistanceRepresentation2D\\n\\n'})"
    __vtkname__ = 'vtkDistanceRepresentation3D'


