如果我希望它们仅位于蓝色斑块上,如何为所有海龟发芽。
breed [type1s type1]
breed [type2s type2]
to setup
create-type1s population
[ set color white
set size 1 ]
create-type2s ((percent_of_leader / 100) * population )
[ set color black
set size 1]
end
在此之前,我只使用下面的代码。是否有其他方法为上面的情况发芽龟?
to setup
ask n-of population patches with [ pcolor = blue]
[ sprout 1
[ set color white
set size 1]]
end
感谢有人可以提供帮助
答案 0 :(得分:2)
您可以使用sprout-type1s
发芽type1
品种的海龟。这是NetLogo sprout-<breeds>
命令的一个版本。
(提示:您可以猜测您想要的命令(如果存在)将涉及调用sprout
的特殊方式或具有相关名称的命令。因此,一个好的策略是查看在NetLogo Dictionary中,它是帮助系统的一部分,搜索名称类似于&#34; sprout&#34;的命令,或扫描字典顶部附近的补丁或海龟部分中的命令名称。)