# 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 vtkGraphLayout(__vtkmodules_vtkCommonExecutionModel.vtkGraphAlgorithm):
    """
    vtkGraphLayout - layout a graph in 2 or 3 dimensions
    
    Superclass: vtkGraphAlgorithm
    
    This class is a shell for many graph layout strategies which may be
    set using the SetLayoutStrategy() function.  The layout strategies do
    the actual work.
    
    Thanks:
    
    Thanks to Brian Wylie from Sandia National Laboratories for adding
    incremental layout capabilities.
    """
    def GetLayoutStrategy(self): # real signature unknown; restored from __doc__
        """
        GetLayoutStrategy(self) -> vtkGraphLayoutStrategy
        C++: virtual vtkGraphLayoutStrategy *GetLayoutStrategy()
        """
        return vtkGraphLayoutStrategy

    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 GetTransform(self): # real signature unknown; restored from __doc__
        """
        GetTransform(self) -> vtkAbstractTransform
        C++: virtual vtkAbstractTransform *GetTransform()
        
        Transform the graph vertices after the layout.
        """
        pass

    def GetUseTransform(self): # real signature unknown; restored from __doc__
        """
        GetUseTransform(self) -> bool
        C++: virtual bool GetUseTransform()
        """
        return False

    def GetZRange(self): # real signature unknown; restored from __doc__
        """
        GetZRange(self) -> float
        C++: virtual double GetZRange()
        
        Set the ZRange for the output data. If the initial layout is
        planar (i.e. all z coordinates are zero), the coordinates will be
        evenly spaced from 0.0 to ZRange. The default is zero, which has
        no effect.
        """
        return 0.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 IsLayoutComplete(self): # real signature unknown; restored from __doc__
        """
        IsLayoutComplete(self) -> int
        C++: virtual int IsLayoutComplete()
        
        Ask the layout algorithm if the layout is complete
        """
        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) -> vtkGraphLayout
        C++: vtkGraphLayout *NewInstance()
        """
        return vtkGraphLayout

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkGraphLayout
        C++: static vtkGraphLayout *SafeDownCast(vtkObjectBase *o)
        """
        return vtkGraphLayout

    def SetLayoutStrategy(self, strategy): # real signature unknown; restored from __doc__
        """
        SetLayoutStrategy(self, strategy:vtkGraphLayoutStrategy) -> None
        C++: void SetLayoutStrategy(vtkGraphLayoutStrategy *strategy)
        
        The layout strategy to use during graph layout.
        """
        pass

    def SetTransform(self, t): # real signature unknown; restored from __doc__
        """
        SetTransform(self, t:vtkAbstractTransform) -> None
        C++: virtual void SetTransform(vtkAbstractTransform *t)
        """
        pass

    def SetUseTransform(self, _arg): # real signature unknown; restored from __doc__
        """
        SetUseTransform(self, _arg:bool) -> None
        C++: virtual void SetUseTransform(bool _arg)
        
        Whether to use the specified transform after layout.
        """
        pass

    def SetZRange(self, _arg): # real signature unknown; restored from __doc__
        """
        SetZRange(self, _arg:float) -> None
        C++: virtual void SetZRange(double _arg)
        """
        pass

    def UseTransformOff(self): # real signature unknown; restored from __doc__
        """
        UseTransformOff(self) -> None
        C++: virtual void UseTransformOff()
        """
        pass

    def UseTransformOn(self): # real signature unknown; restored from __doc__
        """
        UseTransformOn(self) -> None
        C++: virtual void UseTransformOn()
        """
        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__': 'vtkGraphLayout', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'SetLayoutStrategy': <method 'SetLayoutStrategy' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'GetLayoutStrategy': <method 'GetLayoutStrategy' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'IsLayoutComplete': <method 'IsLayoutComplete' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'GetMTime': <method 'GetMTime' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'GetZRange': <method 'GetZRange' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'SetZRange': <method 'SetZRange' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'GetTransform': <method 'GetTransform' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'SetTransform': <method 'SetTransform' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'SetUseTransform': <method 'SetUseTransform' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'GetUseTransform': <method 'GetUseTransform' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'UseTransformOn': <method 'UseTransformOn' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, 'UseTransformOff': <method 'UseTransformOff' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF856255EA0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInfovisLayout.vtkGraphLayout' objects>, '__doc__': 'vtkGraphLayout - layout a graph in 2 or 3 dimensions\\n\\nSuperclass: vtkGraphAlgorithm\\n\\nThis class is a shell for many graph layout strategies which may be\\nset using the SetLayoutStrategy() function.  The layout strategies do\\nthe actual work.\\n\\nThanks:\\n\\nThanks to Brian Wylie from Sandia National Laboratories for adding\\nincremental layout capabilities.\\n\\n'})"
    __vtkname__ = 'vtkGraphLayout'


