Type Alias dioxus_html::geometry::PixelsVector
source · pub type PixelsVector = Vector3D<f64, Pixels>;Expand description
A vector expressed in Pixels
Aliased Type§
struct PixelsVector {
pub x: f64,
pub y: f64,
pub z: f64,
/* private fields */
}Fields§
§x: f64The x (traditionally, horizontal) coordinate.
y: f64The y (traditionally, vertical) coordinate.
z: f64The z (traditionally, depth) coordinate.