[][src]Macro gramit::vec3

macro_rules! vec3 {
    ($x:expr, $y:expr, $z:expr) => { ... };
}

Construct a Vec3 with the given components.

The components are consumed and can be given as any type for which Into<f32> is implemented.