You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
927 B
C++
21 lines
927 B
C++
#include "findrandompointaroundcircle.hpp"
|
|
#include "navigator.hpp"
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
boost::optional<osg::Vec3f> Navigator::findRandomPointAroundCircle(const osg::Vec3f& agentHalfExtents,
|
|
const osg::Vec3f& start, const float maxRadius, const Flags includeFlags) const
|
|
{
|
|
const auto navMesh = getNavMesh(agentHalfExtents);
|
|
if (!navMesh)
|
|
return boost::optional<osg::Vec3f>();
|
|
const auto settings = getSettings();
|
|
const auto result = DetourNavigator::findRandomPointAroundCircle(navMesh->lockConst()->getImpl(),
|
|
toNavMeshCoordinates(settings, agentHalfExtents), toNavMeshCoordinates(settings, start),
|
|
toNavMeshCoordinates(settings, maxRadius), includeFlags, settings);
|
|
if (!result)
|
|
return boost::optional<osg::Vec3f>();
|
|
return boost::optional<osg::Vec3f>(fromNavMeshCoordinates(settings, *result));
|
|
}
|
|
}
|