| 4 | |
| 5 | |
| 6 | pub struct Plot3D { |
| 7 | pub xs: Matrix, |
| 8 | pub ys: Matrix, |
| 9 | pub zs: Matrix, |
| 10 | pub line_desc: Vec<LineDesc>, |
| 11 | pub desc: Desc, |
| 12 | } |
| 13 | |
| 14 | impl Plot3D { |
| 15 | pub fn new<A: Plot3DArg>(args: A) -> Plot3D { |
nothing calls this directly
no outgoing calls
no test coverage detected