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:
@@ -8,17 +8,14 @@
|
||||
*/
|
||||
|
||||
float x, y;
|
||||
float size = 40.0;
|
||||
float size = 80.0;
|
||||
|
||||
void setup()
|
||||
{
|
||||
size(200,200);
|
||||
void setup() {
|
||||
size(640, 360);
|
||||
noStroke();
|
||||
frameRate(30);
|
||||
}
|
||||
|
||||
void draw()
|
||||
{
|
||||
void draw() {
|
||||
background(102);
|
||||
|
||||
x = x + 0.8;
|
||||
|
||||
Reference in New Issue
Block a user