[][src]Macro aljabar::point

macro_rules! point {
    ( $($elem:expr),* $(,)? ) => { ... };
}

Construct a new Point of any size.

let p: Point<u32, 0> = point![];
let p = point![0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0];
let p = point![true, false, false, true];