viewport_lib/interaction/mod.rs
1/// Interactive clip plane controller: position and orient section planes.
2pub mod clip_plane;
3/// Transform gizmo (translate, rotate, scale) with hit testing.
4pub mod gizmo;
5/// Action-based input system with mode-sensitive key/mouse bindings.
6pub mod input;
7/// Object manipulation controller (move, rotate, scale with constraints and numeric input).
8pub mod manipulation;
9/// Ray-cast object picking.
10pub mod picking;
11/// Multi-select system for viewport objects.
12pub mod selection;
13/// Transform snapping helpers and constraint overlay types.
14pub mod snap;
15/// Typed sub-object reference and sub-object selection set.
16pub mod sub_object;
17/// Interactive 3D probe and region widgets (line probe, sphere, box).
18pub mod widgets;