| 29 | v[1] = y; |
| 30 | } |
| 31 | void setZ(double z) { |
| 32 | v[2] = z; |
| 33 | } |
| 34 | |
| 35 | inline const Vector3D operator-(const Vector3D& other) const { |
| 36 | return Vector3D(v[0] - other.v[0], v[1] - other.v[1], v[2] - other.v[2]); |
no outgoing calls
no test coverage detected