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 b29d22d commit b5010d2Copy full SHA for b5010d2
src/compas/geometry/__init__.py
@@ -811,6 +811,16 @@
811
if not compas.IPY:
812
from .icp import icp_numpy
813
814
+from .collections import (
815
+ Collection,
816
+ PointCollection,
817
+)
818
+if not compas.IPY:
819
+ from .collections import (
820
+ CollectionNumpy,
821
+ PointCollectionNumpy
822
+ )
823
+
824
__all__ = [
825
'close',
826
'allclose',
@@ -1107,6 +1117,9 @@
1107
1117
'Shear',
1108
1118
'Transformation',
1109
1119
'Translation',
1120
1121
+ 'Collection',
1122
+ 'PointCollection',
1110
1123
]
1111
1124
1112
1125
@@ -1131,4 +1144,6 @@
1131
1144
'local_to_world_coordinates_numpy',
1132
1145
'delaunay_from_points_numpy',
1133
1146
'voronoi_from_points_numpy',
1147
+ 'CollectionNumpy',
1148
+ 'PointCollectionNumpy'
1134
1149
0 commit comments