Completed
Push — master ( 47eeac...631ca5 )
by
unknown
25s queued 11s
created

example_002.start()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 0
1
from pypen import *
2
3
4
def start():
5
    settings.fps = 70
6
7
8
def update():
9
    clear()
10
    arc(320, 240, 600, 400, PI*sin(TIME+1.6), PI*sin(TIME))
11