MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / Lerp

Function Lerp

include/Vector4.hpp:278–278  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

276 RLCPP_NODISCARD Vector4 Max(const ::Vector4& v2) const { return ::Vector4Max(*this, v2); }
277
278 RLCPP_NODISCARD Vector4 Lerp(const ::Vector4& v2, const float amount) const { return ::Vector4Lerp(*this, v2, amount); }
279
280 RLCPP_NODISCARD Vector4 MoveTowards(const ::Vector4& target, const float maxDistance) const { return ::Vector4MoveTowards(*this, target, maxDistance); }
281

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected