# encoding: utf-8
# module vtkmodules.vtkCommonDataModel
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkCommonDataModel.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonMath as __vtkmodules_vtkCommonMath
import vtkmodules.vtkCommonTransforms as __vtkmodules_vtkCommonTransforms


from .vtkUniformGridAMR import vtkUniformGridAMR

class vtkOverlappingAMR(vtkUniformGridAMR):
    """
    vtkOverlappingAMR - hierarchical dataset of vtkUniformGrids
    
    Superclass: vtkUniformGridAMR
    
    vtkOverlappingAMR extends vtkUniformGridAMR by exposing access to the
    amr meta data, which stores all structural information represented by
    an vtkAMRInformation object
    
    @sa
    vtkAMRInformation
    """
    def Audit(self): # real signature unknown; restored from __doc__
        """
        Audit(self) -> None
        C++: void Audit()
        
        Check whether the data set is internally consistent, e.g. whether
        the meta data and actual data blocks match. Incorrectness will be
        reported as error messages
        """
        pass

    def FindGrid(self, q, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        FindGrid(self, q:[float, float, float], level:int, gridId:int)
            -> bool
        C++: bool FindGrid(double q[3], unsigned int &level,
            unsigned int &gridId)
        
        Given a point q, find the highest level grid that contains it.
        """
        pass

    def GenerateParentChildInformation(self): # real signature unknown; restored from __doc__
        """
        GenerateParentChildInformation(self) -> None
        C++: void GenerateParentChildInformation()
        
        Generate the parent/child relationships - needed to be called
        before GetParents or GetChildren can be used!
        """
        pass

    def GetAMRBlockSourceIndex(self, level, id): # real signature unknown; restored from __doc__
        """
        GetAMRBlockSourceIndex(self, level:int, id:int) -> int
        C++: int GetAMRBlockSourceIndex(unsigned int level,
            unsigned int id)
        """
        return 0

    def GetAMRBox(self, level, id): # real signature unknown; restored from __doc__
        """
        GetAMRBox(self, level:int, id:int) -> vtkAMRBox
        C++: const vtkAMRBox &GetAMRBox(unsigned int level,
            unsigned int id)
        """
        return vtkAMRBox

    def GetAMRInfo(self): # real signature unknown; restored from __doc__
        """
        GetAMRInfo(self) -> vtkAMRInformation
        C++: vtkAMRInformation *GetAMRInfo() override;
        
        Get/Set the internal representation of amr meta meta data
        """
        return vtkAMRInformation

    def GetBounds(self, level, id, bb, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetBounds(self, level:int, id:int, bb:[float, float, float, float,
             float, float]) -> None
        C++: void GetBounds(unsigned int level, unsigned int id,
            double bb[6])
        GetBounds(self, b:[float, float, float, float, float, float])
            -> None
        C++: void GetBounds(double b[6])
        
        Returns the bounding information of a data set.
        """
        pass

    def GetChildren(self, level, index, numChildren): # real signature unknown; restored from __doc__
        """
        GetChildren(self, level:int, index:int, numChildren:int)
            -> Pointer
        C++: unsigned int *GetChildren(unsigned int level,
            unsigned int index, unsigned int &numChildren)
        
        Return a pointer to Children of a block.  The first entry is the
        number of children the block has followed by its children ids in
        level+1. If none exits it returns nullptr.
        """
        pass

    def GetData(self, info): # real signature unknown; restored from __doc__
        """
        GetData(info:vtkInformation) -> vtkOverlappingAMR
        C++: static vtkOverlappingAMR *GetData(vtkInformation *info)
        GetData(v:vtkInformationVector, i:int=0) -> vtkOverlappingAMR
        C++: static vtkOverlappingAMR *GetData(vtkInformationVector *v,
            int i=0)
        
        Retrieve an instance of this class from an information object.
        """
        return vtkOverlappingAMR

    def GetDataObjectType(self): # real signature unknown; restored from __doc__
        """
        GetDataObjectType(self) -> int
        C++: int GetDataObjectType() override;
        
        Return class name of data type (see vtkType.h for definitions).
        """
        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 GetOrigin(self): # real signature unknown; restored from __doc__
        """
        GetOrigin(self) -> Pointer
        C++: double *GetOrigin()
        GetOrigin(self, level:int, id:int, origin:[float, float, float])
            -> None
        C++: void GetOrigin(unsigned int level, unsigned int id,
            double origin[3])
        """
        pass

    def GetParents(self, level, index, numParents): # real signature unknown; restored from __doc__
        """
        GetParents(self, level:int, index:int, numParents:int) -> Pointer
        C++: unsigned int *GetParents(unsigned int level,
            unsigned int index, unsigned int &numParents)
        
        Return a pointer to Parents of a block.  The first entry is the
        number of parents the block has followed by its parent ids in
        level-1. If none exits it returns nullptr.
        """
        pass

    def GetRefinementRatio(self, level): # real signature unknown; restored from __doc__
        """
        GetRefinementRatio(self, level:int) -> int
        C++: int GetRefinementRatio(unsigned int level)
        GetRefinementRatio(self, iter:vtkCompositeDataIterator) -> int
        C++: int GetRefinementRatio(vtkCompositeDataIterator *iter)
        
        Returns the refinement of a given level.
        """
        return 0

    def GetSpacing(self, level, spacing, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetSpacing(self, level:int, spacing:[float, float, float]) -> None
        C++: void GetSpacing(unsigned int level, double spacing[3])
        """
        pass

    def HasChildrenInformation(self): # real signature unknown; restored from __doc__
        """
        HasChildrenInformation(self) -> bool
        C++: bool HasChildrenInformation()
        
        Return whether parent child information has been generated
        """
        return False

    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) -> vtkOverlappingAMR
        C++: vtkOverlappingAMR *NewInstance()
        """
        return vtkOverlappingAMR

    def NewIterator(self): # real signature unknown; restored from __doc__
        """
        NewIterator(self) -> vtkCompositeDataIterator
        C++: vtkCompositeDataIterator *NewIterator() override;
        
        Return a new iterator (the iterator has to be deleted by the
        user).
        """
        return vtkCompositeDataIterator

    def NUMBER_OF_BLANKED_POINTS(self): # real signature unknown; restored from __doc__
        """
        NUMBER_OF_BLANKED_POINTS() -> vtkInformationIdTypeKey
        C++: static vtkInformationIdTypeKey *NUMBER_OF_BLANKED_POINTS()
        """
        pass

    def PrintParentChildInfo(self, level, index): # real signature unknown; restored from __doc__
        """
        PrintParentChildInfo(self, level:int, index:int) -> None
        C++: void PrintParentChildInfo(unsigned int level,
            unsigned int index)
        
        Prints the parents and children of a requested block (Debug
        Routine)
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkOverlappingAMR
        C++: static vtkOverlappingAMR *SafeDownCast(vtkObjectBase *o)
        """
        return vtkOverlappingAMR

    def SetAMRBlockSourceIndex(self, level, id, sourceId): # real signature unknown; restored from __doc__
        """
        SetAMRBlockSourceIndex(self, level:int, id:int, sourceId:int)
            -> None
        C++: void SetAMRBlockSourceIndex(unsigned int level,
            unsigned int id, int sourceId)
        
        Set/Get the source id of a block. The source id is produced by an
        AMR source, e.g. a file reader might set this to be a file block
        id
        """
        pass

    def SetAMRBox(self, level, id, box): # real signature unknown; restored from __doc__
        """
        SetAMRBox(self, level:int, id:int, box:vtkAMRBox) -> None
        C++: void SetAMRBox(unsigned int level, unsigned int id,
            const vtkAMRBox &box)
        
        Set/Get the AMRBox for a given block
        """
        pass

    def SetAMRInfo(self, info): # real signature unknown; restored from __doc__
        """
        SetAMRInfo(self, info:vtkAMRInformation) -> None
        C++: void SetAMRInfo(vtkAMRInformation *info) override;
        """
        pass

    def SetOrigin(self, origin, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetOrigin(self, origin:(float, float, float)) -> None
        C++: void SetOrigin(const double origin[3])
        
        Get/Set the global origin of the amr data set
        """
        pass

    def SetRefinementRatio(self, level, refRatio): # real signature unknown; restored from __doc__
        """
        SetRefinementRatio(self, level:int, refRatio:int) -> None
        C++: void SetRefinementRatio(unsigned int level, int refRatio)
        
        Sets the refinement of a given level. The spacing at level
        level+1 is defined as spacing(level+1) =
        spacing(level)/refRatio(level). Note that currently, this is not
        enforced by this class however some algorithms might not function
        properly if the spacing in the blocks (vtkUniformGrid) does not
        match the one described by the refinement ratio.
        """
        pass

    def SetSpacing(self, level, spacing, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetSpacing(self, level:int, spacing:(float, float, float)) -> None
        C++: void SetSpacing(unsigned int level, const double spacing[3])
        
        Get/Set the grid spacing at a given level
        """
        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__': 'vtkOverlappingAMR', 'GetDataObjectType': <method 'GetDataObjectType' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'NewIterator': <method 'NewIterator' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'SetOrigin': <method 'SetOrigin' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetOrigin': <method 'GetOrigin' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'SetSpacing': <method 'SetSpacing' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetSpacing': <method 'GetSpacing' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'SetAMRBox': <method 'SetAMRBox' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetAMRBox': <method 'GetAMRBox' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetBounds': <method 'GetBounds' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'NUMBER_OF_BLANKED_POINTS': <method 'NUMBER_OF_BLANKED_POINTS' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetData': <method 'GetData' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'SetRefinementRatio': <method 'SetRefinementRatio' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetRefinementRatio': <method 'GetRefinementRatio' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'SetAMRBlockSourceIndex': <method 'SetAMRBlockSourceIndex' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetAMRBlockSourceIndex': <method 'GetAMRBlockSourceIndex' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'HasChildrenInformation': <method 'HasChildrenInformation' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GenerateParentChildInformation': <method 'GenerateParentChildInformation' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetParents': <method 'GetParents' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetChildren': <method 'GetChildren' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'PrintParentChildInfo': <method 'PrintParentChildInfo' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'FindGrid': <method 'FindGrid' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'GetAMRInfo': <method 'GetAMRInfo' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'SetAMRInfo': <method 'SetAMRInfo' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, 'Audit': <method 'Audit' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D659CA0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkCommonDataModel.vtkOverlappingAMR' objects>, '__doc__': 'vtkOverlappingAMR - hierarchical dataset of vtkUniformGrids\\n\\nSuperclass: vtkUniformGridAMR\\n\\nvtkOverlappingAMR extends vtkUniformGridAMR by exposing access to the\\namr meta data, which stores all structural information represented by\\nan vtkAMRInformation object\\n\\n@sa\\nvtkAMRInformation\\n\\n'})"
    __vtkname__ = 'vtkOverlappingAMR'


