|
134 | 134 | BaseNetwork, # NOTE: this class being in the stable API is something we should deprecate before 2.x release |
135 | 135 | Graph, |
136 | 136 | Network, |
137 | | - network_join_edges, |
138 | | - network_polylines, |
139 | | - network_split_edge, |
140 | | - network_is_connected, |
141 | 137 | network_complement, |
142 | | - network_find_cycles, |
143 | | - network_disconnected_nodes, |
| 138 | + network_count_crossings, |
144 | 139 | network_disconnected_edges, |
| 140 | + network_disconnected_nodes, |
| 141 | + network_embed_in_plane_proxy, |
| 142 | + network_embed_in_plane, |
145 | 143 | network_explode, |
146 | | - network_is_crossed, |
147 | | - network_count_crossings, |
148 | 144 | network_find_crossings, |
149 | | - network_is_xy, |
150 | | - network_is_planar, |
| 145 | + network_find_cycles, |
| 146 | + network_is_connected, |
| 147 | + network_is_crossed, |
151 | 148 | network_is_planar_embedding, |
152 | | - network_embed_in_plane, |
153 | | - network_embed_in_plane_proxy, |
| 149 | + network_is_planar, |
| 150 | + network_is_xy, |
| 151 | + network_join_edges, |
| 152 | + network_polylines, |
| 153 | + network_shortest_path, |
154 | 154 | network_smooth_centroid, |
| 155 | + network_split_edge, |
155 | 156 | network_transform, |
156 | 157 | network_transformed, |
157 | | - network_shortest_path |
158 | 158 | ) |
159 | 159 | from .mesh import ( |
160 | 160 | BaseMesh, # NOTE: this class being in the stable API is something we should deprecate before 2.x release |
161 | 161 | HalfEdge, |
162 | 162 | Mesh, |
163 | | - trimesh_collapse_edge, |
164 | 163 | mesh_add_vertex_to_face_edge, |
165 | | - mesh_insert_vertex_on_edge, |
166 | | - mesh_merge_faces, |
167 | | - trimesh_split_edge, |
168 | | - mesh_substitute_vertex_in_faces, |
169 | | - trimesh_swap_edge, |
170 | | - mesh_unweld_vertices, |
171 | | - mesh_unweld_edges, |
| 164 | + mesh_bounding_box_xy, |
| 165 | + mesh_bounding_box, |
| 166 | + mesh_collapse_edge, |
| 167 | + mesh_connected_components, |
| 168 | + mesh_conway_ambo, |
| 169 | + mesh_conway_bevel, |
172 | 170 | mesh_conway_dual, |
| 171 | + mesh_conway_expand, |
| 172 | + mesh_conway_gyro, |
173 | 173 | mesh_conway_join, |
174 | | - mesh_conway_ambo, |
175 | 174 | mesh_conway_kis, |
| 175 | + mesh_conway_meta, |
176 | 176 | mesh_conway_needle, |
177 | | - mesh_conway_zip, |
178 | | - mesh_conway_truncate, |
179 | 177 | mesh_conway_ortho, |
180 | | - mesh_conway_expand, |
181 | | - mesh_conway_gyro, |
182 | 178 | mesh_conway_snub, |
183 | | - mesh_conway_meta, |
184 | | - mesh_conway_bevel, |
185 | | - trimesh_mean_curvature, |
186 | | - trimesh_gaussian_curvature, |
187 | | - mesh_disconnected_vertices, |
| 179 | + mesh_conway_truncate, |
| 180 | + mesh_conway_zip, |
| 181 | + mesh_delete_duplicate_vertices, |
188 | 182 | mesh_disconnected_faces, |
| 183 | + mesh_disconnected_vertices, |
| 184 | + mesh_dual, |
189 | 185 | mesh_explode, |
190 | | - trimesh_face_circle, |
191 | | - mesh_weld, |
192 | | - meshes_join, |
193 | | - meshes_join_and_weld, |
194 | | - mesh_offset, |
195 | | - mesh_thicken, |
| 186 | + mesh_face_adjacency, |
196 | 187 | mesh_flatness, |
| 188 | + mesh_flip_cycles, |
| 189 | + mesh_insert_vertex_on_edge, |
| 190 | + mesh_is_connected, |
| 191 | + mesh_merge_faces, |
| 192 | + mesh_offset, |
197 | 193 | mesh_planarize_faces, |
198 | | - trimesh_remesh |
| 194 | + mesh_quads_to_triangles, |
| 195 | + mesh_slice_plane, |
| 196 | + mesh_smooth_area, |
| 197 | + mesh_smooth_centerofmass, |
| 198 | + mesh_smooth_centroid, |
| 199 | + mesh_split_edge, |
| 200 | + mesh_split_face, |
| 201 | + mesh_subdivide_catmullclark, |
| 202 | + mesh_subdivide_corner, |
| 203 | + mesh_subdivide_doosabin, |
| 204 | + mesh_subdivide_frames, |
| 205 | + mesh_subdivide_quad, |
| 206 | + mesh_subdivide_tri, |
| 207 | + mesh_subdivide, |
| 208 | + mesh_substitute_vertex_in_faces, |
| 209 | + mesh_thicken, |
| 210 | + mesh_transform, |
| 211 | + mesh_transformed, |
| 212 | + mesh_unify_cycles, |
| 213 | + mesh_unweld_edges, |
| 214 | + mesh_unweld_vertices, |
| 215 | + mesh_weld, |
| 216 | + meshes_join_and_weld, |
| 217 | + meshes_join, |
| 218 | + trimesh_collapse_edge, |
| 219 | + trimesh_face_circle, |
| 220 | + trimesh_gaussian_curvature, |
| 221 | + trimesh_mean_curvature, |
| 222 | + trimesh_remesh, |
| 223 | + trimesh_split_edge, |
| 224 | + trimesh_subdivide_loop, |
| 225 | + trimesh_swap_edge, |
199 | 226 | ) |
200 | 227 | from .volmesh import ( |
201 | 228 | BaseVolMesh, # NOTE: this class being in the stable API is something we should deprecate before 2.x release |
|
209 | 236 | if not compas.IPY: |
210 | 237 | from .network import ( |
211 | 238 | network_adjacency_matrix, |
212 | | - network_degree_matrix, |
213 | 239 | network_connectivity_matrix, |
| 240 | + network_degree_matrix, |
214 | 241 | network_laplacian_matrix, |
215 | 242 | ) |
216 | 243 | from .mesh import ( |
217 | 244 | mesh_adjacency_matrix, |
218 | | - mesh_bounding_box_xy, |
219 | | - mesh_bounding_box, |
220 | | - mesh_collapse_edge, |
221 | | - mesh_connected_components, |
222 | 245 | mesh_connectivity_matrix, |
223 | 246 | mesh_contours_numpy, |
224 | 247 | mesh_degree_matrix, |
225 | | - mesh_delete_duplicate_vertices, |
226 | | - mesh_dual, |
227 | | - mesh_face_adjacency, |
228 | 248 | mesh_face_matrix, |
229 | | - mesh_flip_cycles, |
230 | 249 | mesh_geodesic_distances_numpy, |
231 | | - mesh_is_connected, |
232 | 250 | mesh_isolines_numpy, |
233 | 251 | mesh_laplacian_matrix, |
234 | 252 | mesh_oriented_bounding_box_numpy, |
235 | 253 | mesh_oriented_bounding_box_xy_numpy, |
236 | | - mesh_quads_to_triangles, |
237 | | - mesh_slice_plane, |
238 | | - mesh_smooth_area, |
239 | | - mesh_smooth_centerofmass, |
240 | | - mesh_smooth_centroid, |
241 | | - mesh_split_edge, |
242 | | - mesh_split_face, |
243 | | - mesh_subdivide_catmullclark, |
244 | | - mesh_subdivide_corner, |
245 | | - mesh_subdivide_doosabin, |
246 | | - mesh_subdivide_frames, |
247 | | - mesh_subdivide_quad, |
248 | | - mesh_subdivide_tri, |
249 | | - mesh_subdivide, |
250 | 254 | mesh_transform_numpy, |
251 | | - mesh_transform, |
252 | 255 | mesh_transformed_numpy, |
253 | | - mesh_transformed, |
254 | | - mesh_unify_cycles, |
255 | 256 | trimesh_cotangent_laplacian_matrix, |
256 | 257 | trimesh_descent, |
257 | 258 | trimesh_pull_points_numpy, |
258 | 259 | trimesh_samplepoints_numpy, |
259 | 260 | trimesh_smooth_laplacian_cotangent, |
260 | | - trimesh_subdivide_loop, |
261 | 261 | trimesh_vertexarea_matrix, |
262 | 262 | ) |
263 | 263 |
|
|
267 | 267 | 'BaseNetwork', |
268 | 268 | 'Graph', |
269 | 269 | 'Network', |
270 | | - 'network_join_edges', |
271 | | - 'network_polylines', |
272 | | - 'network_split_edge', |
273 | | - 'network_is_connected', |
274 | 270 | 'network_complement', |
275 | | - 'network_find_cycles', |
276 | | - 'network_disconnected_nodes', |
| 271 | + 'network_count_crossings', |
277 | 272 | 'network_disconnected_edges', |
| 273 | + 'network_disconnected_nodes', |
| 274 | + 'network_embed_in_plane_proxy', |
| 275 | + 'network_embed_in_plane', |
278 | 276 | 'network_explode', |
279 | | - 'network_is_crossed', |
280 | | - 'network_count_crossings', |
281 | 277 | 'network_find_crossings', |
282 | | - 'network_is_xy', |
283 | | - 'network_is_planar', |
| 278 | + 'network_find_cycles', |
| 279 | + 'network_is_connected', |
| 280 | + 'network_is_crossed', |
284 | 281 | 'network_is_planar_embedding', |
285 | | - 'network_embed_in_plane', |
286 | | - 'network_embed_in_plane_proxy', |
| 282 | + 'network_is_planar', |
| 283 | + 'network_is_xy', |
| 284 | + 'network_join_edges', |
| 285 | + 'network_polylines', |
| 286 | + 'network_shortest_path', |
287 | 287 | 'network_smooth_centroid', |
| 288 | + 'network_split_edge', |
288 | 289 | 'network_transform', |
289 | 290 | 'network_transformed', |
290 | | - 'network_shortest_path', |
291 | 291 | # Meshes |
292 | 292 | 'BaseMesh', |
293 | 293 | 'HalfEdge', |
|
368 | 368 | __all__ += [ |
369 | 369 | # Networks |
370 | 370 | 'network_adjacency_matrix', |
371 | | - 'network_degree_matrix', |
372 | 371 | 'network_connectivity_matrix', |
| 372 | + 'network_degree_matrix', |
373 | 373 | 'network_laplacian_matrix', |
374 | 374 | # Meshes |
375 | 375 | 'mesh_adjacency_matrix', |
376 | 376 | 'mesh_connectivity_matrix', |
| 377 | + 'mesh_contours_numpy', |
377 | 378 | 'mesh_degree_matrix', |
378 | 379 | 'mesh_face_matrix', |
| 380 | + 'mesh_geodesic_distances_numpy', |
| 381 | + 'mesh_isolines_numpy', |
379 | 382 | 'mesh_laplacian_matrix', |
380 | | - 'trimesh_cotangent_laplacian_matrix', |
381 | | - 'trimesh_vertexarea_matrix', |
382 | 383 | 'mesh_oriented_bounding_box_numpy', |
383 | 384 | 'mesh_oriented_bounding_box_xy_numpy', |
384 | | - 'mesh_isolines_numpy', |
385 | | - 'mesh_contours_numpy', |
386 | | - 'trimesh_descent', |
387 | | - 'mesh_geodesic_distances_numpy', |
388 | | - 'trimesh_smooth_laplacian_cotangent', |
389 | | - 'trimesh_pull_points_numpy', |
390 | 385 | 'mesh_transform_numpy', |
391 | 386 | 'mesh_transformed_numpy', |
| 387 | + 'trimesh_cotangent_laplacian_matrix', |
| 388 | + 'trimesh_descent', |
| 389 | + 'trimesh_pull_points_numpy', |
392 | 390 | 'trimesh_samplepoints_numpy', |
| 391 | + 'trimesh_smooth_laplacian_cotangent', |
| 392 | + 'trimesh_vertexarea_matrix', |
393 | 393 | ] |
0 commit comments