(self, other)
| 9 | return result |
| 10 | |
| 11 | def __mul__(self, other): |
| 12 | result = self.x * other.x + self.y * other.y + self.z * other.z |
| 13 | return result |
| 14 | |
| 15 | def __str__(self): |
| 16 | return f"{self.x}i + {self.y}j + {self.z}k" |
nothing calls this directly
no outgoing calls
no test coverage detected