Netlogo:你如何找到直线距离?

时间:2018-01-15 02:13:03

标签: distance netlogo straight-line-detection

我知道距离测量半径的距离,但是如何找到乌龟和直接位于它们前面的补丁之间的距离(补丁可以根据您正在查看的补丁而改变) 感谢

1 个答案:

答案 0 :(得分:1)

你能解释一下你的意思吗? distance原语不会得到你之后的内容吗?例如:

to setup
  ca
  crt 1
  reset-ticks
end

to go
  ask turtles [
    rt random 60 - 30 
    fd 1
    ; Show the distance to the center of 
    ; the patch that is 3 patches away
    print distance patch-ahead 3
  ]
end