Skip to main content

pixelcoords_core/
lib.rs

1//! Platform-free core for pixelcoords: geometry, selections, session schema,
2//! point verdicts, code emitters, template relocation, hotkey grammar,
3//! config, bitmap font, and CPU rasterizer.
4#![forbid(unsafe_code)]
5
6pub mod config;
7pub mod draw;
8pub mod emit;
9pub mod font;
10pub mod geometry;
11pub mod hotkeys;
12pub mod locate;
13pub mod matcher;
14pub mod selection;
15pub mod session;
16pub mod strings;
17pub mod verdict;