[][src]Macro gramit::vec4

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

Construct a Vec4 with the given components.

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