mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 17:31:45 +00:00
typing
This commit is contained in:
@@ -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): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user