Struct zng_layout::unit::Factor2d

source ·
pub struct Factor2d {
    pub x: Factor,
    pub y: Factor,
}
Expand description

Scale factor applied to x and y dimensions.

Fields§

§x: Factor

Scale factor applied in the x dimension.

§y: Factor

Scale factor applied in the y dimension.

Implementations§

source§

impl Factor2d

source

pub fn new(x: impl Into<Factor>, y: impl Into<Factor>) -> Self

New scale with different scales for each dimension.

source

pub fn uniform(xy: impl Into<Factor>) -> Self

Uniform scale applied to both x and y.

source

pub fn identity() -> Self

No scaling.

source

pub fn is_uniform(self) -> bool

If the scale is the same for both x and y.

source

pub fn abs(self) -> Self

Computes the absolute value of x and y.

source

pub fn yx(self) -> Self

Swap x and y.

Trait Implementations§

source§

impl Clone for Factor2d

source§

fn clone(&self) -> Factor2d

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Factor2d

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Factor2d

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Div<Factor> for Factor2d

§

type Output = Factor2d

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor) -> Factor2d

Performs the / operation. Read more
source§

impl Div<Factor2d> for DipPoint

§

type Output = Point2D<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> DipPoint

Performs the / operation. Read more
source§

impl Div<Factor2d> for PxPoint

§

type Output = Point2D<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> PxPoint

Performs the / operation. Read more
source§

impl Div<Factor2d> for DipRect

§

type Output = Rect<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> DipRect

Performs the / operation. Read more
source§

impl Div<Factor2d> for PxRect

§

type Output = Rect<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> PxRect

Performs the / operation. Read more
source§

impl Div<Factor2d> for DipSize

§

type Output = Size2D<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> DipSize

Performs the / operation. Read more
source§

impl Div<Factor2d> for PxSize

§

type Output = Size2D<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> PxSize

Performs the / operation. Read more
source§

impl Div<Factor2d> for DipVector

§

type Output = Vector2D<Dip, Dip>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> DipVector

Performs the / operation. Read more
source§

impl Div<Factor2d> for PxVector

§

type Output = Vector2D<Px, Px>

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> PxVector

Performs the / operation. Read more
source§

impl Div for Factor2d

§

type Output = Factor2d

The resulting type after applying the / operator.
source§

fn div(self, rhs: Factor2d) -> Factor2d

Performs the / operation. Read more
source§

impl DivAssign<Factor> for Factor2d

source§

fn div_assign(&mut self, rhs: Factor)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for DipPoint

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for PxPoint

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for DipRect

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for PxRect

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for DipSize

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for PxSize

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for DipVector

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign<Factor2d> for PxVector

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl DivAssign for Factor2d

source§

fn div_assign(&mut self, rhs: Factor2d)

Performs the /= operation. Read more
source§

impl<X: Into<Factor>, Y: Into<Factor>> From<(X, Y)> for Factor2d

source§

fn from((x, y): (X, Y)) -> Self

Converts to this type from the input type.
source§

impl From<Factor> for Factor2d

source§

fn from(xy: Factor) -> Self

Converts to this type from the input type.
source§

impl From<Factor2d> for Align

source§

fn from(factor2d: Factor2d) -> Self

Converts to this type from the input type.
source§

impl From<Factor2d> for Size

source§

fn from(scale: Factor2d) -> Self

To relative width and height.

source§

impl From<FactorPercent> for Factor2d

source§

fn from(xy: FactorPercent) -> Self

Converts to this type from the input type.
source§

impl IntoVar<Align> for Factor2d

§

type Var = LocalVar<Align>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<X: Into<Factor>, Y: Into<Factor>> IntoVar<Factor2d> for (X, Y)

§

type Var = LocalVar<Factor2d>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Factor2d> for Factor

§

type Var = LocalVar<Factor2d>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Factor2d> for FactorPercent

§

type Var = LocalVar<Factor2d>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<Size> for Factor2d

source§

fn into_var(self) -> Self::Var

To relative width and height.

§

type Var = LocalVar<Size>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl Mul<Factor> for Factor2d

§

type Output = Factor2d

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor) -> Factor2d

Performs the * operation. Read more
source§

impl Mul<Factor2d> for DipPoint

§

type Output = Point2D<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> DipPoint

Performs the * operation. Read more
source§

impl Mul<Factor2d> for PxPoint

§

type Output = Point2D<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> PxPoint

Performs the * operation. Read more
source§

impl Mul<Factor2d> for DipRect

§

type Output = Rect<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> DipRect

Performs the * operation. Read more
source§

impl Mul<Factor2d> for PxRect

§

type Output = Rect<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> PxRect

Performs the * operation. Read more
source§

impl Mul<Factor2d> for DipSize

§

type Output = Size2D<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> DipSize

Performs the * operation. Read more
source§

impl Mul<Factor2d> for PxSize

§

type Output = Size2D<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> PxSize

Performs the * operation. Read more
source§

impl Mul<Factor2d> for DipVector

§

type Output = Vector2D<Dip, Dip>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> DipVector

Performs the * operation. Read more
source§

impl Mul<Factor2d> for PxVector

§

type Output = Vector2D<Px, Px>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> PxVector

Performs the * operation. Read more
source§

impl Mul for Factor2d

§

type Output = Factor2d

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Factor2d) -> Factor2d

Performs the * operation. Read more
source§

impl MulAssign<Factor> for Factor2d

source§

fn mul_assign(&mut self, rhs: Factor)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for DipPoint

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for PxPoint

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for DipRect

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for PxRect

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for DipSize

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for PxSize

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for DipVector

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign<Factor2d> for PxVector

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl MulAssign for Factor2d

source§

fn mul_assign(&mut self, rhs: Factor2d)

Performs the *= operation. Read more
source§

impl Neg for Factor2d

§

type Output = Factor2d

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl PartialEq for Factor2d

source§

fn eq(&self, other: &Factor2d) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Factor2d

source§

impl IntoValue<Align> for Factor2d

source§

impl<X: Into<Factor>, Y: Into<Factor>> IntoValue<Factor2d> for (X, Y)

source§

impl IntoValue<Factor2d> for Factor

source§

impl IntoValue<Factor2d> for FactorPercent

source§

impl IntoValue<Size> for Factor2d

source§

impl StructuralPartialEq for Factor2d

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T> ToTxt for T
where T: ToString,

source§

fn to_txt(&self) -> Txt

Converts the given value to an owned Txt. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,