1
我已經使用面對在NetLogo沒有任何問題,但不是朝只是一樣嗎? (在朝向貼片/劑的方向上對置的試劑的上下文中)面對和朝向有什麼區別?
towards
towards agent
Reports the heading from this agent to the given agent.
If wrapping is allowed by the topology and the wrapped distance (around the edges of the world) is shorter, towards will use the wrapped path.
Note: asking for the heading from an agent to itself, or an agent on the same location, will cause a runtime error.
set heading towards turtle 1
;; same as "face turtle 1"
See also face.
是否有其中使用設置朝向標題比使用面更好任何情形?
我明白了。我被固定在「朝向......」的「朝着...」的用法上,這就是爲什麼我一直將其與「正面」進行比較的原因。我現在明白了。謝謝! – Gannicus