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();