(self, rh)
| 11 | return D(self.x + rh.x, self.y + rh.y, self.z + rh.z) |
| 12 | |
| 13 | def __eq__(self, rh): |
| 14 | return self.x == rh.x and self.y == rh.y and self.z == rh.z |
| 15 | |
| 16 | |
| 17 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected