feat(editor): add dock tree data model and layout algorithm

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 09:49:53 +09:00
parent a69554eede
commit 14784c731c
2 changed files with 265 additions and 0 deletions

View File

@@ -4,9 +4,11 @@ pub mod layout;
pub mod renderer;
pub mod ui_context;
pub mod widgets;
pub mod dock;
pub use font::FontAtlas;
pub use draw_list::{DrawVertex, DrawCommand, DrawList};
pub use layout::LayoutState;
pub use renderer::UiRenderer;
pub use ui_context::UiContext;
pub use dock::{DockTree, DockNode, Axis, Rect, LeafLayout};