PROCESSING
PROCESSING COMMANDS INT: The first time a variable is written, it must be declared with a statement expressing its datatype. Subsequent uses of this variable must not reference the datatype because Processing will think the variable is being declared again. a = 23 ; int b = -256 ; int c = a + b; int a=a+1; FLOAT: When an array of int or String values is passed in, then a floating point array of the same length is returned. int i = 65; float f = float(i); println(i + " : " + f); // Prints "65 : 65.0" STRING: A string is a sequence of characters. FILL: Sets the color used to fill shapes. fill ( 153 ); NOFILL: Disables filling geometry, if noStroke is also called nothing will be drawn to the screen. noFill (); STROKE: Sets the color used to draw lines ...