Type Alias PixelsVector3D

Source
pub type PixelsVector3D = Vector3D<f64, Pixels>;
Expand description

A 3D vector expressed in Pixels

Aliased Type§

struct PixelsVector3D {
    pub x: f64,
    pub y: f64,
    pub z: f64,
}

Fields§

§x: f64

The x (traditionally, horizontal) coordinate.

§y: f64

The y (traditionally, vertical) coordinate.

§z: f64

The z (traditionally, depth) coordinate.