是否有可能有补丁' pcolor
显示在图片'之上使用gis:fill
绘制GIS?
答案 0 :(得分:2)
赛斯是对的。如果你想要一个(非常笨拙的)解决方法,你可以得到你想要显示颜色的补丁发芽方形乌龟,以在当前图纸的顶部标记patchess颜色。因为它是一个绘图层,之后你可以用它来做很多事情,但如果只是为了快速显示,这个可能可以满足你的需要:
to dubious-workaround
ask patches with [ pxcor > 0 and pycor > 0 ] [
sprout 1 [
set color pcolor
set heading 0
set size 1.25
set shape "square"
stamp
die
]
]
end