Struct plotters::coord::cartesian::Cartesian3d[][src]

pub struct Cartesian3d<X: Ranged, Y: Ranged, Z: Ranged> { /* fields omitted */ }
Expand description

A 3D cartesian coordinate system

Implementations

impl<X: Ranged, Y: Ranged, Z: Ranged> Cartesian3d<X, Y, Z>[src]

pub fn with_projection<SX: Into<X>, SY: Into<Y>, SZ: Into<Z>, F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix>(
    logic_x: SX,
    logic_y: SY,
    logic_z: SZ,
    (actual_x, actual_y): (Range<i32>, Range<i32>),
    build_projection_matrix: F
) -> Self
[src]

pub fn set_coord_pixel_range(
    &mut self,
    actual_x: Range<i32>,
    actual_y: Range<i32>,
    coord_size: (i32, i32, i32)
) -> &mut Self
[src]

pub fn set_projection<F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix>(
    &mut self,
    actual_x: Range<i32>,
    actual_y: Range<i32>,
    f: F
) -> &mut Self
[src]

Set the projection matrix

pub fn new<SX: Into<X>, SY: Into<Y>, SZ: Into<Z>>(
    logic_x: SX,
    logic_y: SY,
    logic_z: SZ,
    (actual_x, actual_y): (Range<i32>, Range<i32>)
) -> Self
[src]

Create a new coordinate

pub fn projection(&self) -> &ProjectionMatrix[src]

Get the projection matrix

pub fn map_3d(
    &self,
    x: &X::ValueType,
    y: &Y::ValueType,
    z: &Z::ValueType
) -> (i32, i32, i32)
[src]

Do not project, only transform the guest coordinate system

pub fn projected_depth(
    &self,
    x: &X::ValueType,
    y: &Y::ValueType,
    z: &Z::ValueType
) -> i32
[src]

Get the depth of the projection

Trait Implementations

impl<X: Ranged, Y: Ranged, Z: Ranged> CoordTranslate for Cartesian3d<X, Y, Z>[src]

type From = (X::ValueType, Y::ValueType, Z::ValueType)

fn translate(&self, coord: &Self::From) -> BackendCoord[src]

Translate the guest coordinate to the guest coordinate

fn depth(&self, coord: &Self::From) -> i32[src]

Get the Z-value of current coordinate

Auto Trait Implementations

impl<X, Y, Z> RefUnwindSafe for Cartesian3d<X, Y, Z> where
    X: RefUnwindSafe,
    Y: RefUnwindSafe,
    Z: RefUnwindSafe

impl<X, Y, Z> Send for Cartesian3d<X, Y, Z> where
    X: Send,
    Y: Send,
    Z: Send

impl<X, Y, Z> Sync for Cartesian3d<X, Y, Z> where
    X: Sync,
    Y: Sync,
    Z: Sync

impl<X, Y, Z> Unpin for Cartesian3d<X, Y, Z> where
    X: Unpin,
    Y: Unpin,
    Z: Unpin

impl<X, Y, Z> UnwindSafe for Cartesian3d<X, Y, Z> where
    X: UnwindSafe,
    Y: UnwindSafe,
    Z: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

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.

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

Performs the conversion.

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.

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

Performs the conversion.