example_005.start()   A
last analyzed

Complexity

Conditions 2

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 2
nop 0
1
from pypen import *
2
3
4
def start():
5
    for x, y in pixels():
6
        rectangle(x, y, 1, 1, (random(255), random(255), random(255)))
7