2021-09-01 11:26:29 +02:00
|
|
|
from Scenes.BasicScene import BasicScene
|
|
|
|
from numpy import array as a
|
2021-08-31 22:22:56 +02:00
|
|
|
import time
|
|
|
|
|
|
|
|
|
2021-09-01 11:26:29 +02:00
|
|
|
scene = BasicScene(10, [600, 400])
|
2021-08-31 22:22:56 +02:00
|
|
|
|
|
|
|
|
2021-09-01 11:26:29 +02:00
|
|
|
while True:
|
|
|
|
scene.redraw()
|
2021-09-01 11:56:26 +02:00
|
|
|
time.sleep(0.01)
|