Point2

Type Alias Point2 

Source
pub type Point2<T> = PointN<[T; 2]>;
Expand description

A 2-dimensional point with scalar type T.

Aliased Type§

pub struct Point2<T>(pub [T; 2]);

Tuple Fields§

§0: [T; 2]