Move the cursor vertically over each bar to alter its brightness. 100% Pen! Stat: 4 My Blocks 12 Variables 0 List
This was a Processing example project: https://processing.org/examples/brightness.html All the Scratch translations are by me! Completed successfully! /*code in Processing*/ /** * Brightness * by Rusty Robison. * * Brightness is the relative lightness or darkness of a color. * Move the cursor vertically over each bar to alter its brightness. */ int barWidth = 20; int lastBar = -1; void setup() { size(640, 360); colorMode(HSB, width, 100, height); noStroke(); background(0); } void draw() { int whichBar = mouseX / barWidth; if (whichBar != lastBar) { int barX = whichBar * barWidth; fill(barX, 100, mouseY); rect(barX, 0, barWidth, height); lastBar = whichBar; print(barX); } }