1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! The core HMD data types for all devices.

extern crate failure;
#[macro_use] extern crate failure_derive;
extern crate nalgebra as na;

pub use self::error::Error;

mod error;
pub mod math;