Skip to main content

Point2

Type Alias Point2 

Source
pub type Point2 = Point2<f64>;
Expand description

A position in a surface’s (u, v) plane. nalgebra::Point2<f64> (ADR-0001).

Aliased Type§

#[repr(C)]
pub struct Point2 { pub coords: Matrix<f64, Const<2>, Const<1>, ArrayStorage<f64, 2, 1>>, }

Fields§

§coords: Matrix<f64, Const<2>, Const<1>, ArrayStorage<f64, 2, 1>>

The coordinates of this point, i.e., the shift from the origin.