Lines Matching refs:Curve
156 pub enum Curve<X, Y> { enum
201 impl<X, Y> Curve<X, Y> { impl
204 Curve::Dots { .. } => Style::Dots, in style()
205 Curve::Impulses { .. } => Style::Impulses, in style()
206 Curve::Lines { .. } => Style::Lines, in style()
207 Curve::LinesPoints { .. } => Style::LinesPoints, in style()
208 Curve::Points { .. } => Style::Points, in style()
209 Curve::Steps { .. } => Style::Steps, in style()
237 impl<X, Y> traits::Plot<Curve<X, Y>> for Figure
246 fn plot<F>(&mut self, curve: Curve<X, Y>, configure: F) -> &mut Figure in plot()
252 Curve::Dots { x, y } in plot()
253 | Curve::Impulses { x, y } in plot()
254 | Curve::Lines { x, y } in plot()
255 | Curve::LinesPoints { x, y } in plot()
256 | Curve::Points { x, y } in plot()
257 | Curve::Steps { x, y } => (x, y), in plot()