世界包装和追逐角度

时间:2014-06-25 15:34:17

标签: netlogo

我试图让一只乌龟追逐一小群其他海龟,被追逐的乌龟从这个角度转向追捕者:

atan (xcor - [xcor] of pursuer) (ycor - [ycor] of pursuer)

当世界被包裹时,减去坐标显然无法工作,所以我想知道是否有人之前遇到过这个问题或者可以找出解决方案?

1 个答案:

答案 0 :(得分:2)

尝试使用记者,因为它考虑了世界拓扑:http://ccl.northwestern.edu/netlogo/docs/dictionary.html#towards

例如,如果您想直接离开目标,您可以采取以下措施:

ask hunted [ set heading (towards hunter - 180) ]