Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85a73cb8eb |
+5
-1
@@ -1,7 +1,11 @@
|
||||
from concurrent.futures import ProcessPoolExecutor, as_completed
|
||||
from typing import List, Tuple, Any, Optional
|
||||
|
||||
import pymesh
|
||||
try:
|
||||
import pymesh
|
||||
except ImportError:
|
||||
pymesh = None # Or handle it in another appropriate way
|
||||
|
||||
from speckle_automate import AutomationContext
|
||||
|
||||
from Geometry.element import Element
|
||||
|
||||
+5
-1
@@ -1,6 +1,10 @@
|
||||
from typing import Union, Type
|
||||
|
||||
import pymesh
|
||||
try:
|
||||
import pymesh
|
||||
except ImportError:
|
||||
pymesh = None
|
||||
|
||||
import trimesh
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user