Skip to content

Instantly share code, notes, and snippets.

View animist's full-sized avatar

Rei Kawai animist

  • Uniba Inc.
  • Shibuya
View GitHub Profile
@animist
animist / gist:7a0a079b40dfa922a31bebba10774213
Created February 6, 2020 14:16
効率悪くサイコロを振り続ける
from random import shuffle
from math import floor
def setup():
global array, loop_counter
array = [1, 2, 3, 4, 5, 6, 7, 8, 9]
loop_counter = 0
size(1280, 720, P3D)
background(0)