[][src]Enum arcs::components::Dimension

pub enum Dimension {
    Pixels(f64),
    DrawingUnits(Length),
}

A dimension on the canvas.

Variants

Pixels(f64)

The dimension should always be the same size in pixels, regardless of the zoom level.

DrawingUnits(Length)

A "real" dimension defined in Drawing Space, which should be scaled appropriately when we zoom.

Implementations

impl Dimension[src]

pub fn in_pixels(
    self,
    pixels_per_drawing_unit: Scale<f64, DrawingSpace, CanvasSpace>
) -> f64
[src]

Trait Implementations

impl Clone for Dimension[src]

impl Copy for Dimension[src]

impl Debug for Dimension[src]

impl Default for Dimension[src]

impl PartialEq<Dimension> for Dimension[src]

impl StructuralPartialEq for Dimension[src]

Auto Trait Implementations

impl RefUnwindSafe for Dimension

impl Send for Dimension

impl Sync for Dimension

impl Unpin for Dimension

impl UnwindSafe for Dimension

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> RoundFrom<T> for T[src]

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryDefault for T where
    T: Default
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.