arcs 0.3.0

An extensible framework for creating 2D CAD applications using the Entity-Component-System pattern.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Rendering and window management for the `arcs` CAD library.

mod utils;
mod window;

pub use utils::{
    to_canvas_coordinates, to_drawing_coordinates, transform_to_canvas_space,
    transform_to_drawing_space,
};
pub use window::Window;