Completed
Push — master ( b257e4...44ec51 )
by
unknown
18s queued 11s
created

example_008   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 2

2 Functions

Rating   Name   Duplication   Size   Complexity  
A start() 0 2 1
A update() 0 7 1
1
from pypen import *
2
3
4
def start():
5
    settings.fps = 60
6
7
8
def update():
9
    fill_screen("orange")
10
    ellipse(50, 40, 50, 30, "red", "blue", 3)
11
12
    ellipse(200, 200, 30, 50, stroke_width=10)
13
14
    ellipse(400, 400, 30, 100, "green")
15