如何在netlogo中询问海龟补丁
How to ask turtles patch in netlogo
到目前为止,我一直坚持使用 This,但第三行似乎不起作用。谁能解释一下如何向乌龟要他的补丁?
let otherTurtle min-one-of other turtles [distance myself]
let otherTurtleHeading [heading] of otherTurtle
let otherTurtlePatch [patch] of otherTurtle
你很接近。你要的是
let otherTurtlePatch [patch-here] of otherTurtle
patch-here
是一名记者,returns 乌龟所在的补丁,在这种情况下,其他乌龟所在的补丁。
到目前为止,我一直坚持使用 This,但第三行似乎不起作用。谁能解释一下如何向乌龟要他的补丁?
let otherTurtle min-one-of other turtles [distance myself]
let otherTurtleHeading [heading] of otherTurtle
let otherTurtlePatch [patch] of otherTurtle
你很接近。你要的是
let otherTurtlePatch [patch-here] of otherTurtle
patch-here
是一名记者,returns 乌龟所在的补丁,在这种情况下,其他乌龟所在的补丁。