pixelcoords-core 0.1.1

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

pub mod config;
pub mod draw;
pub mod emit;
pub mod font;
pub mod geometry;
pub mod hotkeys;
pub mod locate;
pub mod matcher;
pub mod selection;
pub mod session;
pub mod strings;
pub mod verdict;