Struct eschers::canvas::Box [] [src]

pub struct Box {
    pub a: Vector<f64>,
    pub b: Vector<f64>,
    pub c: Vector<f64>,
}

A Box represents the area and position that we will draw in.

Fields

Determines the origin of the drawing area, used to position the box.

Determines the x axis of the box.

Determines the y axis of the box.

Methods

impl Box
[src]

Create a box from corresponding vectors

Trait Implementations

impl Debug for Box
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Box
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Box
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Box
[src]

Auto Trait Implementations

impl Send for Box

impl Sync for Box