Luke Burgess-Yeo

Results 2 comments of Luke Burgess-Yeo

``` processing int i = 255; void setup() { size(400, 400, P3D); } void draw() { background(255); stroke(0, i); fill(255, 0, 0, i); ellipse(width/2, height/2, 150, 150); i--; } ```...

Firstly, I quite like the "Run Script" button because it means I can write scripts that behave a bit more like applications without having to create an fsharp project, etc....