File tree Expand file tree Collapse file tree 1 file changed +26
-4
lines changed Expand file tree Collapse file tree 1 file changed +26
-4
lines changed Original file line number Diff line number Diff line change 5353"""
5454from __future__ import absolute_import
5555
56- from ._select import * # noqa : F401 F403
57- from ._modify import * # noqa : F401 F403
58-
59- from .inspectors import * # noqa : F401 F403
56+ from ._select import ( # noqa : F401 F403
57+ mesh_select_vertex ,
58+ mesh_select_vertices ,
59+ mesh_select_face ,
60+ mesh_select_faces ,
61+ mesh_select_edge ,
62+ mesh_select_edges ,
63+ network_select_node ,
64+ network_select_nodes ,
65+ network_select_edge ,
66+ network_select_edges
67+ )
68+ from ._modify import ( # noqa : F401 F403
69+ network_update_attributes ,
70+ network_update_node_attributes ,
71+ network_update_edge_attributes ,
72+ network_move_node ,
73+ mesh_update_attributes ,
74+ mesh_update_vertex_attributes ,
75+ mesh_update_face_attributes ,
76+ mesh_update_edge_attributes ,
77+ mesh_move_vertex ,
78+ mesh_move_vertices ,
79+ mesh_move_face
80+ )
81+ from .inspectors import MeshVertexInspector # noqa : F401 F403
6082
6183from ._object import BaseObject
6284from .meshobject import MeshObject
You can’t perform that action at this time.
0 commit comments