1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#![doc(html_root_url = "https://docs.rs/oyk/0.7.1")]
//! OYK is ODE (Open Dynamics Engine) bindings for Rust yaw kinetics
//!
//! # Requirements
//!
//! - [ https://github.com/nomissbowling/asciiz ]( https://github.com/nomissbowling/asciiz )
//! - [ ode and drawstuff ]( https://ode.org/ )
//!
//! to build dll
//!
//! - premake4 --with-demos --only-double --with-libccd --cc=gcc --platform--x64 --os=windows codeblocks
//! - premake4 --with-demos --only-double --with-libccd --platform--x64 --os=windows vs2010
//!
//! in the running directory
//!
//! - drawstuff.dll
//! - ode.dll
//! - libstdc++-6.dll
//! - libgcc_s_seh-1.dll
//! - libwinpthread-1.dll
//!
//! # Examples
//!
//! see also
//!
//! - [ https://github.com/nomissbowling/ode-rs-0000 ]( https://github.com/nomissbowling/ode-rs-0000 )
//!

pub mod ode;
pub mod colors;