| 7 | |
| 8 | #[derive(Clone, Default)] |
| 9 | pub struct Plot { |
| 10 | pub xs: Matrix, |
| 11 | pub ys: Matrix, |
| 12 | pub line_desc: Vec<LineDesc>, |
| 13 | pub axis_desc: AxisDesc, |
| 14 | pub desc: Desc, |
| 15 | } |
| 16 | |
| 17 | impl Plot { |
| 18 | pub fn new(args: impl PlotArg) -> Plot { |
nothing calls this directly
no outgoing calls
no test coverage detected