1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! A Rust CAD System - A library for building 2D *Computer Aided Design*
//! applications.

#![forbid(unsafe_code)]

pub mod algorithms;
pub mod commands;
pub mod components;
pub mod primitives;
pub mod systems;
mod vector;
pub mod window;

pub use vector::{Orientation, Vector};