craydate 0.1.7

A safe Rust API for the Playdate hand held gaming system.
Documentation
1
2
3
4
5
6
7
8
9
10
/// A three-dimensional vector.
#[derive(Debug, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct Vector3<T> {
  /// The x component.
  pub x: T,
  /// The y component.
  pub y: T,
  /// The z component.
  pub z: T,
}