// -*- coding: utf-8 -*- // // Copyright 2021 Michael Büsch // // Licensed under the Apache License version 2.0 // or the MIT license, at your option. // SPDX-License-Identifier: Apache-2.0 OR MIT // mod base; mod brake; mod curveipo; mod object; mod point; mod rotation; mod vector; pub mod world; pub use base::{degrees, kmph_mps, mps_kmph, radians, Axis}; pub use object::aviation; pub use object::aviation::AviationObj; pub use object::walker; pub use object::walker::Walker; pub use point::Point; pub use rotation::Rotation; pub use world::World; pub mod prelude { pub use super::base::PhyType; pub use super::object::PhyObject; } // vim: ts=4 sw=4 expandtab