tuioxide 0.3.1

A Rust implementation of the TUIO 1.1 and TUIO 2.0 protocols, providing both client and server components for sending and receiving multitouch and tangible object data over OSC.
Documentation
pub mod client;
pub mod constants;
mod container;
mod errors;
mod math;
pub mod osc_receiver;
mod osc_utils;
pub(crate) mod processor;
mod profile;
mod rotation;
mod translation;
mod tuio_state;
mod tuio_time;
mod utils;
#[cfg(feature = "websocket")]
pub use osc_receiver::websocket::WebsocketOscReceiver;

pub use client::Client;
pub(crate) use container::Container;
pub use errors::TuioError;
pub use math::*;
pub(crate) use osc_utils::*;
pub use profile::Profile;
pub(crate) use rotation::Rotation;
pub(crate) use translation::Translation;
pub use tuio_time::TuioTime;
pub(crate) use utils::*;