some_math_lib 0.1.2

A basic math library.
Documentation
1
2
3
4
5
6
7
8
9

/// A 3-dimensional vector.
#[derive(Debug, Copy, Clone)]
pub struct Vector3 {
    pub x: f64,
    pub y: f64,
    pub z: f64,
}