adding color to bee-keeper

This commit is contained in:
mmoriame 2013-07-17 18:37:37 +02:00
parent f9e3b0f276
commit 69552b753f
2 changed files with 6 additions and 4 deletions

View File

@ -123,7 +123,7 @@ travel-cost
travel-cost
0
10
2
0.4
0.1
1
NIL
@ -240,7 +240,7 @@ season-uncertainty
season-uncertainty
0
20
20
4.9
0.1
1
NIL
@ -255,7 +255,7 @@ d-max
d-max
0
30
30
12
1
1
NIL

View File

@ -16,6 +16,7 @@ to setup-spots
end
to setup-beekeepers
let temp 1
file-open "beekeepers-initial-location.txt"
while [not file-at-end?]
[
@ -25,7 +26,8 @@ to setup-beekeepers
[ set shape "person"
set size 1
move-to one-of centroids-on patches with [ county-name = location-bk ]
if trace-on [ set color red pd ] ]
if trace-on [ set color temp pd ] ]
set temp temp + 3
]
file-close
end