Trait nannou::draw::properties::spatial::position::SetPosition[][src]

pub trait SetPosition: Sized {
    fn properties(&mut self) -> &mut Properties;

    fn x(self, x: f32) -> Self { ... }
fn y(self, y: f32) -> Self { ... }
fn z(self, z: f32) -> Self { ... }
fn xy(self, p: Point2) -> Self { ... }
fn xyz(self, p: Point3) -> Self { ... }
fn x_y(self, x: f32, y: f32) -> Self { ... }
fn x_y_z(self, x: f32, y: f32, z: f32) -> Self { ... } }
Expand description

An API for setting the position::Properties.

Required methods

Provide a mutable reference to the position::Properties for updating.

Provided methods

Build with the given Absolute Position along the x axis.

Build with the given Absolute Position along the y axis.

Build with the given Absolute Position along the z axis.

Set the Position with some two-dimensional point.

Set the Position with some three-dimensional point.

Set the Position with x y coordinates.

Set the Position with x y z coordinates.

Implementors