如何从随机放置海龟到固定放置

时间:2018-09-02 15:37:56

标签: netlogo

草(绿叶)以setxy random-xcor random-ycor随机放置在世界各地。我想要的是固定其位置(例如,每片叶子将每行放置10个单位)。任何人都可以帮助我如何改变我的健身习惯,或者还有其他方法。非常感谢

Grasses (green leaf) are randomly placed across the world with setxy random-xcor random-ycor

1 个答案:

答案 0 :(得分:1)

也许mod模运算符将为您解决问题。例如:

to setup
  ca
  resize-world 0 50 0 50
  ask patches with [ pxcor mod 10 = 0 and pycor mod 10 = 0 ] [
    sprout 1 [
      set shape "leaf"
      set color green
    ]
  ]
  reset-ticks
end