Files
geMoldInsight/venv/lib/python3.11/site-packages/vtkmodules/vtkIOAvmesh.pyi
T

38 lines
1.5 KiB
Python
Raw Normal View History

2026-02-12 23:22:11 +08:00
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 vtkAvmeshReader(vtkmodules.vtkCommonExecutionModel.vtkPartitionedDataSetCollectionAlgorithm):
build_connectivity_iteratively:'getset_descriptor'
file_name:'getset_descriptor'
surface_only:'getset_descriptor'
def __init__(self, **properties:Any) -> None: ...
def BuildConnectivityIterativelyOff(self) -> None: ...
def BuildConnectivityIterativelyOn(self) -> None: ...
def CanReadFile(self, filename:str) -> int: ...
def GetBuildConnectivityIteratively(self) -> bool: ...
def GetFileName(self) -> str: ...
def GetNumberOfGenerationsFromBase(self, type:str) -> int: ...
@staticmethod
def GetNumberOfGenerationsFromBaseType(type:str) -> int: ...
def GetSurfaceOnly(self) -> bool: ...
def IsA(self, type:str) -> int: ...
@staticmethod
def IsTypeOf(type:str) -> int: ...
def NewInstance(self) -> 'vtkAvmeshReader': ...
@staticmethod
def SafeDownCast(o:'vtkObjectBase') -> 'vtkAvmeshReader': ...
def SetBuildConnectivityIteratively(self, _arg:bool) -> None: ...
def SetFileName(self, arg:str) -> None: ...
def SetSurfaceOnly(self, _arg:bool) -> None: ...
def SurfaceOnlyOff(self) -> None: ...
def SurfaceOnlyOn(self) -> None: ...