diff --git a/java/examples/Topics/Geometry/Primitives3D/Primitives3D.pde b/java/examples/Basics/Form/Primitives3D/Primitives3D.pde similarity index 100% rename from java/examples/Topics/Geometry/Primitives3D/Primitives3D.pde rename to java/examples/Basics/Form/Primitives3D/Primitives3D.pde diff --git a/java/examples/Basics/Typography/Letters/Letters.pde b/java/examples/Basics/Typography/Letters/Letters.pde index 14cc51a1e..1f683ce20 100644 --- a/java/examples/Basics/Typography/Letters/Letters.pde +++ b/java/examples/Basics/Typography/Letters/Letters.pde @@ -18,7 +18,7 @@ void setup() // Set the font and its size (in units of pixels) textFont(fontA); - textAlign(CENTER); + textAlign(CENTER, CENTER); // Only draw once noLoop(); @@ -32,7 +32,7 @@ void draw() // Set the left and top margin int margin = 6; int gap = 60; - translate(margin*1.5, margin*2); + translate(margin*10, margin*1.5); // Create a matrix of letterforms int counter = 0;