1
是否可以從一個文件創建一定數量的海龜來擁有自己的補丁?像總是在同一個位置?Netlogo:設置特定的setxy patern設置龜數量?
我從文件中讀到了106只海龜,我希望能讓它們在自己的補丁上創建,就像一個方形的latice類的東西。我希望能夠看到模型世界並輕鬆識別一隻烏龜。
file-open "turtledata_A.txt"
show file-read-line
while [not file-at-end?]
[
set param read-from-string (word "[" file-read-line "]")
create-turtles 1 [setxy ??]
]
file-close
]