Description: Using the program "Nodebox" I designed generative art using nothing but code. This object uses a library called "colors" to blend complimentary colors within the object. Each individual object is created and rotated from the center point. Each object also has an aspect of randomness in the curve of the line.
Code example: This is the code which generates the images below.
Code example: This is the code which generates the images below.
size (1490, 900) colors = ximport(“colors”) fill (0, 0, 0,) clr = colors.rgb(0.6, 0.4, 0, 0.5)
yellowgreenish = colors.range(h=(0.01,0.02)) background( yellowgreenish() ) colors.shadow(alpha=0.05, blur=0.2)
for shape in range(10): #xpos = random(200, 300) #ypos = random(200, 300)
stroke(clr.analog(angle=10, d=.1))
xpos = (WIDTH/2) ypos = (HEIGHT/2)
autoclosepath(False) beginpath(random(WIDTH), random(HEIGHT))
for i in range(60):
translate(xpos, ypos) transform(CORNER) rotate (i * 10)
fill(random(1), 0, random(0.4), .02) beginpath(0, 0) curveto(10, random(-110,400), 50, 50, ran-
dom(50,450), random(50,450)) autoclosepath(close=False) endpath() reset()



