Always use entwine first

pull/1464/head
Piero Toffanin 2022-05-25 17:55:44 +00:00
rodzic 47bd1d600d
commit 09a4d0cdf6
1 zmienionych plików z 6 dodań i 10 usunięć

Wyświetl plik

@ -28,10 +28,6 @@ def build(input_point_cloud_files, output_path, max_concurrency=8, rerun=False):
if rerun: if rerun:
dir_cleanup() dir_cleanup()
# On Windows we always use Untwine
if sys.platform == 'win32':
build_untwine(input_point_cloud_files, tmpdir, output_path, max_concurrency=max_concurrency)
else:
# Attempt with entwine (faster, more memory hungry) # Attempt with entwine (faster, more memory hungry)
try: try:
build_entwine(input_point_cloud_files, tmpdir, output_path, max_concurrency=max_concurrency) build_entwine(input_point_cloud_files, tmpdir, output_path, max_concurrency=max_concurrency)