We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51efbed commit fe02af1Copy full SHA for fe02af1
src/compas/topology/__init__.py
@@ -85,12 +85,13 @@
85
)
86
from .connectivity import adjacency_from_edges
87
88
-if compas.IPY:
+if compas.RHINO:
89
from .orientation_rhino import (
90
face_adjacency_rhino,
91
unify_cycles_rhino
92
93
-else:
+
94
+if not compas.IPY:
95
from .orientation_numpy import (
96
face_adjacency_numpy,
97
unify_cycles_numpy
@@ -114,12 +115,13 @@
114
115
'adjacency_from_edges'
116
]
117
118
119
__all__ += [
120
'face_adjacency_rhino',
121
'unify_cycles_rhino',
122
123
124
125
126
'face_adjacency_numpy',
127
'unify_cycles_numpy',
0 commit comments