| 244 | RLCPP_NODISCARD Vector3 Max(const ::Vector3& vector3) const { return Vector3Max(*this, vector3); } |
| 245 | |
| 246 | RLCPP_NODISCARD Vector3 Barycenter(const ::Vector3& a, const ::Vector3& b, const ::Vector3& c) const { |
| 247 | return Vector3Barycenter(*this, a, b, c); |
| 248 | } |
| 249 | |
| 250 | static Vector3 Zero() { return Vector3Zero(); } |
| 251 |
nothing calls this directly
no outgoing calls
no test coverage detected