| 234 | RLCPP_NODISCARD Vector3 Transform(const ::Matrix& matrix) const { return Vector3Transform(*this, matrix); } |
| 235 | |
| 236 | RLCPP_NODISCARD Vector3 RotateByQuaternion(const ::Quaternion& quaternion) const { |
| 237 | return Vector3RotateByQuaternion(*this, quaternion); |
| 238 | } |
| 239 | |
| 240 | RLCPP_NODISCARD Vector3 Reflect(const ::Vector3& normal) const { return Vector3Reflect(*this, normal); } |
| 241 |
nothing calls this directly
no outgoing calls
no test coverage detected