(x: f64, y: f64, z: f64)
| 14 | |
| 15 | impl Point3 { |
| 16 | fn new(x: f64, y: f64, z: f64) -> Self { |
| 17 | Self { x, y, z } |
| 18 | } |
| 19 | |
| 20 | fn matrix_mul(self, rhs: Vec<Point3>) -> Self { |
| 21 | let x = rhs[0].x * self.x + rhs[0].y * self.y + rhs[0].z * self.z; |
nothing calls this directly
no outgoing calls
no test coverage detected