MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / FindRandomPointAroundCircle

Method FindRandomPointAroundCircle

Source/Engine/Navigation/Navigation.cpp:373–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

371}
372
373bool Navigation::FindRandomPointAroundCircle(const Vector3& center, float radius, Vector3& result)
374{
375 if (NavMeshes.IsEmpty())
376 return false;
377 return NavMeshes.First()->FindRandomPointAroundCircle(center, radius, result);
378}
379
380bool Navigation::RayCast(const Vector3& startPosition, const Vector3& endPosition, NavMeshHit& hitInfo)
381{

Callers

nothing calls this directly

Calls 2

IsEmptyMethod · 0.45
FirstMethod · 0.45

Tested by

no test coverage detected