블로그 이미지
Leeway is... the freedom that someone has to take the action they want to or to change their plans.
maetel

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
  • total
  • today
  • yesterday

Category

2007. 6. 27. 11:46 Code/NodeBox


size(200,200)
speed(100)

def setup():
    global x
    global y

    
def draw():
    global x
    global y
    
    s=50
    x=MOUSEX
    y=MOUSEY
   
    for h in range(4):
        for w in range(4):
            if ((x>=w*s)&(x<=(w+1)*s)) & ((y>=h*s)&(y<=(h+1)*s)):
                r=1
                g=1
                b=1
             
            else:
                r=0
                g=0
                b=1
                    
            stroke(1)
            fill(r,g,b)
            rect(w*s,h*s,s,s)
    
    rotate(135)
    arrow(x,y,20)

so far, a piece of cake~          

'Code > NodeBox' 카테고리의 다른 글

matrix_color_chain  (0) 2007.06.27
matrix-color change  (0) 2007.06.27
arrive  (0) 2007.06.25
steering  (0) 2007.06.25
ping_orbit  (0) 2007.06.20
posted by maetel