递归火山软件开发平台
标题:
求助,如何把火山的数组传进这个嵌入函数??
[打印本页]
作者:
server
时间:
2024-4-8 15:38
标题:
求助,如何把火山的数组传进这个嵌入函数??
#include <vector>
#include <cmath>
float calculateMostFrequentYawAngle(float Rx, float Ry, const std::vector<std::pair<float, float>>& monsterPositions, float angleRange = 25.0f)
{
std::map<float, int> yawCounts;
for (const auto& pos : monsterPositions)
{
float dx = pos.first - Rx;
float dy = pos.second - Ry;
float yaw = std::atan2(dy, dx) * 180.0f / M_PI;
while (yaw < 0.0f)
yaw += 360.0f;
while (yaw >= 360.0f)
yaw -= 360.0f;
for (float yawInRange = yaw - angleRange; yawInRange <= yaw + angleRange; yawInRange++)
{
if (yawInRange < 0.0f)
yawInRange += 360.0f;
else if (yawInRange >= 360.0f)
yawInRange -= 360.0f;
yawCounts[yawInRange]++;
}
}
float mostFrequentYaw = 0.0f;
int maxCount = 0;
for (const auto& entry : yawCounts)
{
if (entry.second > maxCount)
{
mostFrequentYaw = entry.first;
maxCount = entry.second;
}
}
return mostFrequentYaw;
}
复制代码
作者:
Xelloss0618
时间:
2024-4-8 15:51
用别名就行,以下代码基于PIV模块
<火山程序 类型 = "通常" 版本 = 1 />
类 monsterPosition <公开 基础类 = 标准键值对模板 @模板实现类 = "单精度小数, 单精度小数">
类 monsterPositions <公开 基础类 = PIV数值模板 @模板实现类 = "monsterPosition">
{
#
}
欢迎光临 递归火山软件开发平台 (https://bbs.voldp.com/)
Powered by Discuz! X3.4