This commit is contained in:
Andrej730
2025-06-30 18:59:26 +05:00
parent e743db27f4
commit 94d2d32d18
14 changed files with 105 additions and 56 deletions
@@ -318,12 +318,21 @@ class Iterator:
def get_native(self): ...
def get_object(self, id): ...
def had_error_processing_elements(self): ...
def initialize(self): ...
def initialize(self) -> bool:
"""Return true if the iterator is initialized with any elements, false otherwise."""
...
def next(self): ...
def process_concurrently(self): ...
def process_finished_rep(self, rep): ...
def progress(self): ...
def set_cache(self, cache): ...
def progress(self) -> int:
"""Return current progress (0-100).
Updated after processing each representation.
"""
...
def set_cache(self, cache: GeometrySerializer): ...
def unit_magnitude(self): ...
def unit_name(self): ...