# encoding: utf-8
# module vtkmodules.vtkInfovisLayout
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkInfovisLayout.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel


class vtkAreaLayout(__vtkmodules_vtkCommonExecutionModel.vtkTreeAlgorithm):
    """
    vtkAreaLayout - layout a vtkTree into a tree map
    
    Superclass: vtkTreeAlgorithm
    
    vtkAreaLayout assigns sector regions to each vertex in the tree,
    creating a tree ring.  The data is added as a data array with four
    components per tuple representing the location and size of the sector
    using the format (StartAngle, EndAngle, innerRadius, outerRadius).
    
    This algorithm relies on a helper class to perform the actual layout.
    This helper class is a subclass of vtkAreaLayoutStrategy.
    
    @par Thanks: Thanks to Jason Shepherd from Sandia National
    Laboratories for help developing this class.
    """
    def EdgeRoutingPointsOff(self): # real signature unknown; restored from __doc__
        """
        EdgeRoutingPointsOff(self) -> None
        C++: virtual void EdgeRoutingPointsOff()
        """
        pass

    def EdgeRoutingPointsOn(self): # real signature unknown; restored from __doc__
        """
        EdgeRoutingPointsOn(self) -> None
        C++: virtual void EdgeRoutingPointsOn()
        """
        pass

    def FindVertex(self, pnt, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        FindVertex(self, pnt:[float, float]) -> int
        C++: vtkIdType FindVertex(float pnt[2])
        
        Get the vertex whose area contains the point, or return -1 if no
        vertex area covers the point.
        """
        pass

    def GetAreaArrayName(self): # real signature unknown; restored from __doc__
        """
        GetAreaArrayName(self) -> str
        C++: virtual char *GetAreaArrayName()
        
        The name for the array created for the area for each vertex. The
        rectangles are stored in a quadruple float array (startAngle,
        endAngle, innerRadius, outerRadius). For rectangular layouts,
        this is (minx, maxx, miny, maxy).
        """
        return ""

    def GetBoundingArea(self, id, sinfo, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetBoundingArea(self, id:int, sinfo:[float, ...]) -> None
        C++: void GetBoundingArea(vtkIdType id, float *sinfo)
        
        The bounding area information for a certain vertex id.
        """
        pass

    def GetEdgeRoutingPoints(self): # real signature unknown; restored from __doc__
        """
        GetEdgeRoutingPoints(self) -> bool
        C++: virtual bool GetEdgeRoutingPoints()
        
        Whether to output a second output tree with vertex locations
        appropriate for routing bundled edges. Default is on.
        """
        return False

    def GetLayoutStrategy(self): # real signature unknown; restored from __doc__
        """
        GetLayoutStrategy(self) -> vtkAreaLayoutStrategy
        C++: virtual vtkAreaLayoutStrategy *GetLayoutStrategy()
        
        The strategy to use when laying out the tree map.
        """
        return vtkAreaLayoutStrategy

    def GetMTime(self): # real signature unknown; restored from __doc__
        """
        GetMTime(self) -> int
        C++: vtkMTimeType GetMTime() override;
        
        Get the modification time of the layout algorithm.
        """
        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 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) -> vtkAreaLayout
        C++: vtkAreaLayout *NewInstance()
        """
        return vtkAreaLayout

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkAreaLayout
        C++: static vtkAreaLayout *SafeDownCast(vtkObjectBase *o)
        """
        return vtkAreaLayout

    def SetAreaArrayName(self, _arg): # real signature unknown; restored from __doc__
        """
        SetAreaArrayName(self, _arg:str) -> None
        C++: virtual void SetAreaArrayName(const char *_arg)
        """
        pass

    def SetEdgeRoutingPoints(self, _arg): # real signature unknown; restored from __doc__
        """
        SetEdgeRoutingPoints(self, _arg:bool) -> None
        C++: virtual void SetEdgeRoutingPoints(bool _arg)
        """
        pass

    def SetLayoutStrategy(self, strategy): # real signature unknown; restored from __doc__
        """
        SetLayoutStrategy(self, strategy:vtkAreaLayoutStrategy) -> None
        C++: void SetLayoutStrategy(vtkAreaLayoutStrategy *strategy)
        """
        pass

    def SetSizeArrayName(self, name): # real signature unknown; restored from __doc__
        """
        SetSizeArrayName(self, name:str) -> None
        C++: virtual void SetSizeArrayName(const char *name)
        
        The array name to use for retrieving the relative size of each
        vertex. If this array is not found, use constant size for each
        vertex.
        """
        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__': 'vtkAreaLayout', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'SetSizeArrayName': <method 'SetSizeArrayName' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'GetAreaArrayName': <method 'GetAreaArrayName' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'SetAreaArrayName': <method 'SetAreaArrayName' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'GetEdgeRoutingPoints': <method 'GetEdgeRoutingPoints' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'SetEdgeRoutingPoints': <method 'SetEdgeRoutingPoints' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'EdgeRoutingPointsOn': <method 'EdgeRoutingPointsOn' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'EdgeRoutingPointsOff': <method 'EdgeRoutingPointsOff' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'GetLayoutStrategy': <method 'GetLayoutStrategy' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'SetLayoutStrategy': <method 'SetLayoutStrategy' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'GetMTime': <method 'GetMTime' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'FindVertex': <method 'FindVertex' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, 'GetBoundingArea': <method 'GetBoundingArea' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF856250560>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInfovisLayout.vtkAreaLayout' objects>, '__doc__': 'vtkAreaLayout - layout a vtkTree into a tree map\\n\\nSuperclass: vtkTreeAlgorithm\\n\\nvtkAreaLayout assigns sector regions to each vertex in the tree,\\ncreating a tree ring.  The data is added as a data array with four\\ncomponents per tuple representing the location and size of the sector\\nusing the format (StartAngle, EndAngle, innerRadius, outerRadius).\\n\\nThis algorithm relies on a helper class to perform the actual layout.\\nThis helper class is a subclass of vtkAreaLayoutStrategy.\\n\\n@par Thanks: Thanks to Jason Shepherd from Sandia National\\nLaboratories for help developing this class.\\n\\n'})"
    __vtkname__ = 'vtkAreaLayout'


