[][src]Trait plotters::coord::ReversableRanged

pub trait ReversableRanged: Ranged {
    fn unmap(&self, input: i32, limit: (i32, i32)) -> Option<Self::ValueType>;
}

The trait indicates the ranged value can be map reversely, which means an pixel-based cooridinate is given, it's possible to figureout the underlying logic value.

Required methods

fn unmap(&self, input: i32, limit: (i32, i32)) -> Option<Self::ValueType>

Loading content...

Implementors

impl ReversableRanged for RangedCoordf32[src]

impl ReversableRanged for RangedCoordf64[src]

impl ReversableRanged for RangedCoordi32[src]

impl ReversableRanged for RangedCoordi64[src]

impl ReversableRanged for RangedCoordu32[src]

impl ReversableRanged for RangedCoordu64[src]

Loading content...