44 lines
1.8 KiB
Python
44 lines
1.8 KiB
Python
|
|
from typing import overload, Any, Callable, TypeVar, Union
|
||
|
|
from typing import Tuple, List, Sequence, MutableSequence
|
||
|
|
|
||
|
|
Callback = Union[Callable[..., None], None]
|
||
|
|
Buffer = TypeVar('Buffer')
|
||
|
|
Pointer = TypeVar('Pointer')
|
||
|
|
Template = TypeVar('Template')
|
||
|
|
|
||
|
|
import vtkmodules.vtkCommonCore
|
||
|
|
import vtkmodules.vtkCommonExecutionModel
|
||
|
|
|
||
|
|
class vtkTRUCHASReader(vtkmodules.vtkCommonExecutionModel.vtkMultiBlockDataSetAlgorithm):
|
||
|
|
file_name:'getset_descriptor'
|
||
|
|
number_of_block_arrays:'getset_descriptor'
|
||
|
|
number_of_cell_arrays:'getset_descriptor'
|
||
|
|
number_of_point_arrays:'getset_descriptor'
|
||
|
|
def __init__(self, **properties:Any) -> None: ...
|
||
|
|
@staticmethod
|
||
|
|
def CanReadFile(filename:str) -> int: ...
|
||
|
|
def GetBlockArrayName(self, index:int) -> str: ...
|
||
|
|
def GetBlockArrayStatus(self, gridname:str) -> int: ...
|
||
|
|
def GetCellArrayName(self, index:int) -> str: ...
|
||
|
|
def GetCellArrayStatus(self, name:str) -> int: ...
|
||
|
|
def GetFileName(self) -> str: ...
|
||
|
|
def GetNumberOfBlockArrays(self) -> int: ...
|
||
|
|
def GetNumberOfCellArrays(self) -> int: ...
|
||
|
|
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
|
||
|
|
def GetNumberOfPointArrays(self) -> int: ...
|
||
|
|
def GetPointArrayName(self, index:int) -> str: ...
|
||
|
|
def GetPointArrayStatus(self, name:str) -> int: ...
|
||
|
|
def IsA(self, type:str) -> int: ...
|
||
|
|
@staticmethod
|
||
|
|
def IsTypeOf(type:str) -> int: ...
|
||
|
|
def NewInstance(self) -> 'vtkTRUCHASReader': ...
|
||
|
|
@staticmethod
|
||
|
|
def SafeDownCast(o:'vtkObjectBase') -> 'vtkTRUCHASReader': ...
|
||
|
|
def SetBlockArrayStatus(self, gridname:str, status:int) -> None: ...
|
||
|
|
def SetCellArrayStatus(self, name:str, status:int) -> None: ...
|
||
|
|
def SetFileName(self, _arg:str) -> None: ...
|
||
|
|
def SetPointArrayStatus(self, name:str, status:int) -> None: ...
|
||
|
|
|