| 186 | } |
| 187 | |
| 188 | static void Vector3CopyConstructor(const Vector3 &other, Vector3 *self) |
| 189 | { |
| 190 | new(self) Vector3(other); |
| 191 | } |
| 192 | |
| 193 | static void Vector3InitConstructor(float x, float y, float z, Vector3 *self) |
| 194 | { |
no outgoing calls
no test coverage detected