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