From 34ebf9c551b77e7e0dbeb7a9cf5a96c811a5fe34 Mon Sep 17 00:00:00 2001 From: Niels NTG Date: Fri, 20 May 2016 22:42:54 +0200 Subject: [PATCH 1/3] Added language "Processing" --- p/processing | 1 + 1 file changed, 1 insertion(+) create mode 100644 p/processing diff --git a/p/processing b/p/processing new file mode 100644 index 00000000..431ab8ba --- /dev/null +++ b/p/processing @@ -0,0 +1 @@ +println("Hello World"); From 1344810ac0f8d2a2b5b122cce76ee2a050631068 Mon Sep 17 00:00:00 2001 From: Niels NTG Date: Fri, 20 May 2016 22:50:00 +0200 Subject: [PATCH 2/3] Added file extension --- p/{processing => processing.pde} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename p/{processing => processing.pde} (100%) diff --git a/p/processing b/p/processing.pde similarity index 100% rename from p/processing rename to p/processing.pde From 60ed7f2c21c37437028277eb74f6cc1927f79d35 Mon Sep 17 00:00:00 2001 From: Niels NTG Date: Sat, 12 Nov 2016 14:51:26 +0100 Subject: [PATCH 3/3] Updated processing.pde to make it more like an actual Processing sketch --- p/processing.pde | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/p/processing.pde b/p/processing.pde index 431ab8ba..82b9eb84 100644 --- a/p/processing.pde +++ b/p/processing.pde @@ -1 +1,4 @@ -println("Hello World"); +size(128, 128); +background(0); +textAlign(CENTER, CENTER); +text("Hello World", width / 2, height / 2);