ux-dx 0.2.1

3D Graphics Primitives for Angular Rust
Documentation
1
2
3
4
5
6
use std::cmp::PartialEq;

pub trait Behavior {
    fn update(&self, dt: f32) -> f32;
    fn is_complete(&self) -> bool;
}