Type Alias Scale

Source
pub type Scale<T> = Scale<T, UnknownUnit, UnknownUnit>;
Expand description

Alias for euclid::default::Scale

Aliased Type§

#[repr(C)]
pub struct Scale<T>(pub T);

Tuple Fields§

§0: T

Trait Implementations§

Source§

impl<S: Scalar> Transformation<S> for Scale<S>

Source§

fn transform_point(&self, p: Point<S>) -> Point<S>

Source§

fn transform_vector(&self, v: Vector<S>) -> Vector<S>