Trait Plot

Source
pub trait Plot {
    // Required method
    fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>]);
}

Required Methods§

Source

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Implementations on Foreign Types§

Source§

impl Plot for Geometry<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for Coordinate<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for GeometryCollection<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for Line<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for LineString<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for MultiLineString<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for MultiPoint<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for MultiPolygon<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for Point<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Source§

impl Plot for Polygon<f64>

Source§

fn plot(&self, fg: &mut Axes2D, opt: &[PlotOption<&str>])

Implementors§