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

Function MoveTowards

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

Source from the content-addressed store, hash-verified

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
282 RLCPP_NODISCARD Vector4 Invert() const { return ::Vector4Invert(*this); }
283

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected