Type Alias Scale

pub type Scale<T> = Scale<T, UnknownUnit, UnknownUnit>;
Available on crate feature geometry only.

Aliased Type§

struct Scale<T>(pub T);

Fields§

§0: T

Implementations

§

impl<T, Src, Dst> Scale<T, Src, Dst>

pub const fn new(x: T) -> Scale<T, Src, Dst>

pub fn identity() -> Scale<T, Src, Dst>
where T: One,

Creates an identity scale (1.0).

pub fn transform_point( self, point: Point2D<T, Src>, ) -> Point2D<<T as Mul>::Output, Dst>
where T: Copy + Mul,

Returns the given point transformed by this scale.

§Example
use euclid::{Scale, point2};
enum Mm {};
enum Cm {};

let to_mm: Scale<i32, Cm, Mm> = Scale::new(10);

assert_eq!(to_mm.transform_point(point2(42, -42)), point2(420, -420));

pub fn transform_point3d( self, point: Point3D<T, Src>, ) -> Point3D<<T as Mul>::Output, Dst>
where T: Copy + Mul,

Returns the given point transformed by this scale.

pub fn transform_vector( self, vec: Vector2D<T, Src>, ) -> Vector2D<<T as Mul>::Output, Dst>
where T: Copy + Mul,

Returns the given vector transformed by this scale.

§Example
use euclid::{Scale, vec2};
enum Mm {};
enum Cm {};

let to_mm: Scale<i32, Cm, Mm> = Scale::new(10);

assert_eq!(to_mm.transform_vector(vec2(42, -42)), vec2(420, -420));

pub fn transform_size( self, size: Size2D<T, Src>, ) -> Size2D<<T as Mul>::Output, Dst>
where T: Copy + Mul,

Returns the given size transformed by this scale.

§Example
use euclid::{Scale, size2};
enum Mm {};
enum Cm {};

let to_mm: Scale<i32, Cm, Mm> = Scale::new(10);

assert_eq!(to_mm.transform_size(size2(42, -42)), size2(420, -420));

pub fn transform_rect( self, rect: &Rect<T, Src>, ) -> Rect<<T as Mul>::Output, Dst>
where T: Copy + Mul,

Returns the given rect transformed by this scale.

§Example
use euclid::{Scale, rect};
enum Mm {};
enum Cm {};

let to_mm: Scale<i32, Cm, Mm> = Scale::new(10);

assert_eq!(to_mm.transform_rect(&rect(1, 2, 42, -42)), rect(10, 20, 420, -420));

pub fn transform_box2d( self, b: &Box2D<T, Src>, ) -> Box2D<<T as Mul>::Output, Dst>
where T: Copy + Mul,

Returns the given box transformed by this scale.

pub fn transform_box3d( self, b: &Box3D<T, Src>, ) -> Box3D<<T as Mul>::Output, Dst>
where T: Copy + Mul,

Returns the given box transformed by this scale.

pub fn is_identity(self) -> bool
where T: PartialEq + One,

Returns true if this scale has no effect.

§Example
use euclid::Scale;
use euclid::num::One;
enum Mm {};
enum Cm {};

let cm_per_mm: Scale<f32, Mm, Cm> = Scale::new(0.1);
let mm_per_mm: Scale<f32, Mm, Mm> = Scale::new(1.0);

assert_eq!(cm_per_mm.is_identity(), false);
assert_eq!(mm_per_mm.is_identity(), true);
assert_eq!(mm_per_mm, Scale::one());

pub fn get(self) -> T

Returns the underlying scalar scale factor.

pub fn inverse(self) -> Scale<<T as Div>::Output, Dst, Src>
where T: One + Div,

The inverse Scale (1.0 / self).

§Example
use euclid::Scale;
enum Mm {};
enum Cm {};

let cm_per_mm: Scale<f32, Cm, Mm> = Scale::new(0.1);

assert_eq!(cm_per_mm.inverse(), Scale::new(10.0));
§

impl<T, Src, Dst> Scale<T, Src, Dst>
where T: PartialOrd,

pub fn min(self, other: Scale<T, Src, Dst>) -> Scale<T, Src, Dst>

pub fn max(self, other: Scale<T, Src, Dst>) -> Scale<T, Src, Dst>

pub fn clamp( self, start: Scale<T, Src, Dst>, end: Scale<T, Src, Dst>, ) -> Scale<T, Src, Dst>
where T: Copy,

Returns the point each component of which clamped by corresponding components of start and end.

Shortcut for self.max(start).min(end).

§

impl<T, Src, Dst> Scale<T, Src, Dst>
where T: NumCast,

pub fn cast<NewT>(self) -> Scale<NewT, Src, Dst>
where NewT: NumCast,

Cast from one numeric representation to another, preserving the units.

§Panics

If the source value cannot be represented by the target type NewT, then method panics. Use try_cast if that must be case.

§Example
use euclid::Scale;
enum Mm {};
enum Cm {};

let to_mm: Scale<i32, Cm, Mm> = Scale::new(10);

assert_eq!(to_mm.cast::<f32>(), Scale::new(10.0));

That conversion will panic, because i32 not enough to store such big numbers:

use euclid::Scale;
enum Mm {};// millimeter = 10^-2 meters
enum Em {};// exameter   = 10^18 meters

// Panics
let to_em: Scale<i32, Mm, Em> = Scale::new(10e20).cast();

pub fn try_cast<NewT>(self) -> Option<Scale<NewT, Src, Dst>>
where NewT: NumCast,

Fallible cast from one numeric representation to another, preserving the units. If the source value cannot be represented by the target type NewT, then None is returned.

§Example
use euclid::Scale;
enum Mm {};
enum Cm {};
enum Em {};// Exameter = 10^18 meters

let to_mm: Scale<i32, Cm, Mm> = Scale::new(10);
let to_em: Scale<f32, Mm, Em> = Scale::new(10e20);

assert_eq!(to_mm.try_cast::<f32>(), Some(Scale::new(10.0)));
// Integer to small to store that number
assert_eq!(to_em.try_cast::<i32>(), None);

Trait Implementations

§

impl<T, Src, Dst> Add for Scale<T, Src, Dst>
where T: Add,

§

type Output = Scale<<T as Add>::Output, Src, Dst>

The resulting type after applying the + operator.
§

fn add(self, other: Scale<T, Src, Dst>) -> <Scale<T, Src, Dst> as Add>::Output

Performs the + operation. Read more
§

impl<T, Src, Dst> Clone for Scale<T, Src, Dst>
where T: Clone,

§

fn clone(&self) -> Scale<T, Src, Dst>

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
§

impl<T, Src, Dst> Debug for Scale<T, Src, Dst>
where T: Debug,

§

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

Formats the value using the given formatter. Read more
§

impl<T, Src, Dst> Default for Scale<T, Src, Dst>
where T: Default,

§

fn default() -> Scale<T, Src, Dst>

Returns the “default value” for a type. Read more
§

impl<T, Src, Dst> Hash for Scale<T, Src, Dst>
where T: Hash,

§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<T, A, B, C> Mul<Scale<T, B, C>> for Scale<T, A, B>
where T: Mul,

§

type Output = Scale<<T as Mul>::Output, A, C>

The resulting type after applying the * operator.
§

fn mul( self, other: Scale<T, B, C>, ) -> <Scale<T, A, B> as Mul<Scale<T, B, C>>>::Output

Performs the * operation. Read more
§

impl<T, Src, Dst> One for Scale<T, Src, Dst>
where T: One,

§

fn one() -> Scale<T, Src, Dst>

§

impl<T, Src, Dst> Ord for Scale<T, Src, Dst>
where T: Ord,

§

fn cmp(&self, other: &Scale<T, Src, Dst>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
§

impl<T, Src, Dst> PartialEq for Scale<T, Src, Dst>
where T: PartialEq,

§

fn eq(&self, other: &Scale<T, Src, Dst>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

impl<T, Src, Dst> PartialOrd for Scale<T, Src, Dst>
where T: PartialOrd,

§

fn partial_cmp(&self, other: &Scale<T, Src, Dst>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl<T, Src, Dst> Sub for Scale<T, Src, Dst>
where T: Sub,

§

type Output = Scale<<T as Sub>::Output, Src, Dst>

The resulting type after applying the - operator.
§

fn sub(self, other: Scale<T, Src, Dst>) -> <Scale<T, Src, Dst> as Sub>::Output

Performs the - operation. Read more
§

impl<S> Transformation<S> for Scale<S, UnknownUnit, UnknownUnit>
where S: Scalar,

§

impl<T, Src, Dst> Copy for Scale<T, Src, Dst>
where T: Copy,

§

impl<T, Src, Dst> Eq for Scale<T, Src, Dst>
where T: Eq,