[][src]Struct plotters_unstable::prelude::Cartesian2d

pub struct Cartesian2d<X: Ranged, Y: Ranged> { /* fields omitted */ }

A 2D Cartesian coordinate system described by two 1D ranged coordinate specs.

Implementations

impl<X: Ranged, Y: Ranged> Cartesian2d<X, Y>[src]

pub fn new<IntoX: Into<X>, IntoY: Into<Y>>(
    logic_x: IntoX,
    logic_y: IntoY,
    actual: (Range<i32>, Range<i32>)
) -> Self
[src]

Create a new 2D cartesian coordinate system

  • logic_x and logic_y : The description for the 1D coordinate system
  • actual: The pixel range on the screen for this coordinate system

pub fn draw_mesh<E, DrawMesh: FnMut(MeshLine<'_, X, Y>) -> Result<(), E>, XH: KeyPointHint, YH: KeyPointHint>(
    &self,
    h_limit: YH,
    v_limit: XH,
    draw_mesh: DrawMesh
) -> Result<(), E>
[src]

Draw the mesh for the coordinate system

pub fn get_x_range(&self) -> Range<X::ValueType>[src]

Get the range of X axis

pub fn get_y_range(&self) -> Range<Y::ValueType>[src]

Get the range of Y axis

pub fn get_x_axis_pixel_range(&self) -> Range<i32>[src]

Get the horizental backend coordinate range where X axis should be drawn

pub fn get_y_axis_pixel_range(&self) -> Range<i32>[src]

Get the vertical backend coordinate range where Y axis should be drawn

pub fn x_spec(&self) -> &X[src]

Get the 1D coordinate spec for X axis

pub fn y_spec(&self) -> &Y[src]

Get the 1D coordinate spec for Y axis

Trait Implementations

impl<X: Clone + Ranged, Y: Clone + Ranged> Clone for Cartesian2d<X, Y>[src]

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

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

impl<X: ReversibleRanged, Y: ReversibleRanged> ReverseCoordTranslate for Cartesian2d<X, Y>[src]

Auto Trait Implementations

impl<X, Y> RefUnwindSafe for Cartesian2d<X, Y> where
    X: RefUnwindSafe,
    Y: RefUnwindSafe

impl<X, Y> Send for Cartesian2d<X, Y> where
    X: Send,
    Y: Send

impl<X, Y> Sync for Cartesian2d<X, Y> where
    X: Sync,
    Y: Sync

impl<X, Y> Unpin for Cartesian2d<X, Y> where
    X: Unpin,
    Y: Unpin

impl<X, Y> UnwindSafe for Cartesian2d<X, Y> where
    X: UnwindSafe,
    Y: UnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> SetParameter for T

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

type Owned = T

The resulting type after obtaining ownership.

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.