pub struct Cartesian2d<X: Ranged, Y: Ranged> { /* private fields */ }
Expand description

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

Implementations§

source§

impl<X: Ranged, Y: Ranged> Cartesian2d<X, Y>

source

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

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
source

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>

Draw the mesh for the coordinate system

source

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

Get the range of X axis

source

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

Get the range of Y axis

source

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

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

source

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

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

source

pub fn x_spec(&self) -> &X

Get the 1D coordinate spec for X axis

source

pub fn y_spec(&self) -> &Y

Get the 1D coordinate spec for Y axis

Trait Implementations§

source§

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

source§

fn clone(&self) -> Cartesian2d<X, Y>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<X: Ranged, Y: Ranged> CoordTranslate for Cartesian2d<X, Y>

§

type From = (<X as Ranged>::ValueType, <Y as Ranged>::ValueType)

Specifies the object to be translated from
source§

fn translate(&self, from: &Self::From) -> BackendCoord

Translate the guest coordinate to the guest coordinate
source§

fn depth(&self, _from: &Self::From) -> i32

Get the Z-value of current coordinate
source§

impl<X: ReversibleRanged, Y: ReversibleRanged> ReverseCoordTranslate for Cartesian2d<X, Y>

source§

fn reverse_translate(&self, input: BackendCoord) -> Option<Self::From>

Reverse translate the coordinate from the drawing coordinate to the logic coordinate. Note: the return value is an option, because it’s possible that the drawing coordinate isn’t able to be represented in te guest coordinate system

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.