Search Results for: Drawing instruments
your ellipse: fill(random( ) , ); stroke( , ); ellipse( , , random( ), ); animate you can animate your graphics by replacing numbers with "mousex" , "mousey" or "framecount". in this example we change colors and shape size using the mouse: background( ,mousex); fill( ,mousey, ); rect( , ,mousex); drawing
tool copy this code into the 'void draw ()' area of your code to make a drawing tool... fill( , ); nostroke(); ellipse(mousex,mousey, ); then remove the line 'background();' repeat you can repeat any piece of code by using a 'for loop'. a for loop changes a variable of a quantity you decide, until it...
https://www.sketchpatch.net/create/