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
1
2
3
4
5
6
use rosc::OscPacket;

pub trait TuioProcessor: Default {
    type Events: Send;
    fn update(&mut self, packet: OscPacket) -> Option<Self::Events>;
}