0
2つの異なる色のウミガメが重なった後、ウミガメを孵化したい。他のカメの色に基づいて指定された色のウミガメ
to interact
if any? other turtles-here
[
birth
]
;detect interaction
end
to birth
ask turtles
[
hatch random 5 [ fd 1 ]
]
end
相互作用する2つの親カメの平均色であるカメを孵化したいと思います。
のようなものです。
to birth
ask turtles
[ hatch random 5
[ let color be sum of previous turtles color sum/2
fd 1 ] ]
end
また、私がnetlogoの構文について誤解している可能性のあるヒントもあります。