From 1efef5e4cdec0170f0b319a83cd937dde9b71e25 Mon Sep 17 00:00:00 2001 From: codeanticode Date: Mon, 23 Jul 2012 17:35:54 +0000 Subject: [PATCH] Updated Create Shapes examples to only use P2D --- .../Topics/Create Shapes/BeginEndContour/BeginEndContour.pde | 2 +- java/examples/Topics/Create Shapes/GroupPShape/GroupPShape.pde | 2 +- java/examples/Topics/Create Shapes/PathPShape/PathPShape.pde | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/java/examples/Topics/Create Shapes/BeginEndContour/BeginEndContour.pde b/java/examples/Topics/Create Shapes/BeginEndContour/BeginEndContour.pde index 0412ab524..6394d77b8 100644 --- a/java/examples/Topics/Create Shapes/BeginEndContour/BeginEndContour.pde +++ b/java/examples/Topics/Create Shapes/BeginEndContour/BeginEndContour.pde @@ -7,7 +7,7 @@ PShape s; void setup() { - size(640, 360, P3D); // Not working in P2D? + size(640, 360, P2D); smooth(); // Make a shape s = createShape(); diff --git a/java/examples/Topics/Create Shapes/GroupPShape/GroupPShape.pde b/java/examples/Topics/Create Shapes/GroupPShape/GroupPShape.pde index 0efef722a..397cd44d7 100644 --- a/java/examples/Topics/Create Shapes/GroupPShape/GroupPShape.pde +++ b/java/examples/Topics/Create Shapes/GroupPShape/GroupPShape.pde @@ -9,7 +9,7 @@ PShape group; void setup() { - size(640, 360, P3D); + size(640, 360, P2D); smooth(); // Create the shape as a group group = createShape(GROUP); diff --git a/java/examples/Topics/Create Shapes/PathPShape/PathPShape.pde b/java/examples/Topics/Create Shapes/PathPShape/PathPShape.pde index 09a148036..3a4dc874f 100644 --- a/java/examples/Topics/Create Shapes/PathPShape/PathPShape.pde +++ b/java/examples/Topics/Create Shapes/PathPShape/PathPShape.pde @@ -8,7 +8,7 @@ PShape path; void setup() { - size(640, 360, P3D); + size(640, 360, P2D); smooth(); // Create the shape path = createShape();