NetLogo - 如何显示乌龟的当前坐标

时间:2012-01-31 11:35:21

标签: netlogo

我已经尝试了很长一段时间来展示NetLogo中乌龟的当前坐标。我知道要显示其中一个坐标,我可以使用:

show [xcor] of turtle 0

show [ycor] of turtle 0

但是如何显示两个坐标呢?

谢谢。

3 个答案:

答案 0 :(得分:8)

你可以show [list xcor ycor] of turtle 0

或者,发烧友:show [(word "(" xcor ", " ycor ")")] of turtle 0

答案 1 :(得分:2)

如果您不知道您想要显示的坐标的确切乌龟(of turtle 5),但是您想要确定运行过程的特定乌龟的位置,您可以使用

show list xcor ycor  ; not need to use self or myself

答案 2 :(得分:-3)

http://ccl.northwestern.edu/netlogo/docs/programming.html#syntax

你可以做到

显示乌龟5的[xcor + ycor]

但不确定这是否有帮助?

抱歉..它不...... 1秒!