Files
BadNote/lib/editor/stroke.dart
Akiba So d346cc2670
All checks were successful
CI / Windows build (push) Successful in 14m22s
feat: unified shell, diagnostics pack, native Office, sticky board
Make Surface remote debugging and classroom workflows viable: always-on
structured logs with one-click zip export, a single AppShell chrome,
OOXML PPTX/DOCX annotation without LibreOffice, and a first-class sticky
board. Also drop spike/legacy ink widgets and tighten pen feel
(predictor, PenInfoHistory, page-tile layer).

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-05 17:55:27 +08:00

11 lines
439 B
Dart

// Canonical stroke model surface.
//
// Historical baggage had three parallel types (PenStroke / EditorStroke /
// InkStroke). New code MUST import from this barrel and prefer [EditorStroke]
// for engine/storage. UI adapters convert at the edge.
//
// Do not add a fourth model.
export '../engine/stroke_model.dart' show EditorStroke, EditorPoint, EditorTool;
export '../canvas/pen_stroke.dart' show PenStroke, PenPoint, PenStrokeKind;