Code Sketch
circles
Category: Art
cleari
//setBackground(ColorMaker.hsla(0, 0.00, 0.00, 0.71))
def cir1 = Picture {
setPenColor(black)
circle(60)
}
def newColor = cm.deepSkyBlue
setBackground(cm.linearGradient(
150, -50, cm.aquamarine, 0,190, newColor))
cir1.withScaling(1.5).withFillColor(cyan).draw
cir1.withFillColor(black).draw
cir1.withScaling(1.5).withFlippedX.withFillColor(cyan).draw
cir1.withScaling(1).withFlippedX.withFillColor(black).draw
cir1.withScaling(2).draw
cir1.withScaling(2).withFlippedX.draw