mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Examples updates to 640 x 360 pixels
This commit is contained in:
@@ -11,16 +11,15 @@
|
||||
float a = 0.0;
|
||||
float s = 0.0;
|
||||
|
||||
void setup()
|
||||
{
|
||||
size(200,200);
|
||||
void setup() {
|
||||
size(640, 360);
|
||||
noStroke();
|
||||
rectMode(CENTER);
|
||||
frameRate(30);
|
||||
}
|
||||
|
||||
void draw()
|
||||
{
|
||||
void draw() {
|
||||
|
||||
background(102);
|
||||
|
||||
a = a + 0.04;
|
||||
|
||||
Reference in New Issue
Block a user