()
| 2 | |
| 3 | #[test] |
| 4 | fn test_3d() { |
| 5 | let xs = [0.,1.,2.,3.,4.,5.,6.]; |
| 6 | let ys = [0.,1.,4.,9.,16.,25.,36.]; |
| 7 | let zs = [0.,1.,4.,9.,16.,25.,36.]; |
| 8 | |
| 9 | let plot = Plot3D::new((xs, ys, zs, "r-o")); |
| 10 | plot.show(); |
| 11 | } |
| 12 | |
| 13 | #[test] |
| 14 | fn test_sub_zero_3d() { |