Skip to content

Commit e07cc53

Browse files
authored
- switch 255 values to 256 for random colors
1 parent 5d4589d commit e07cc53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

miscellaneous/digital_aquatics/digital_aquatics.pyde

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
def setup():
77
size(500, 500)
8-
fillcolor = color(random(255),
9-
random(255),
10-
random(255),
8+
fillcolor = color(random(256),
9+
random(256),
10+
random(256),
1111
random(128, 230))
1212

1313
# remove bubble and bgcolor arguments for a transparent perimeter

0 commit comments

Comments
 (0)