commit a8a553a5d76525c400331cc3b58c78e1e34b275c
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Mon Mar 9 11:27:13 2020 +0000

    Progress with Pyraminx.

diff --git a/src/main/java/org/distorted/examples/meshjoin/MeshJoinRenderer.java b/src/main/java/org/distorted/examples/meshjoin/MeshJoinRenderer.java
index 2e756f7..9d99224 100644
--- a/src/main/java/org/distorted/examples/meshjoin/MeshJoinRenderer.java
+++ b/src/main/java/org/distorted/examples/meshjoin/MeshJoinRenderer.java
@@ -139,17 +139,17 @@ class MeshJoinRenderer implements GLSurfaceView.Renderer
       {
       final int[] FACE_COLORS = new int[] { 0xffffff00, 0xff00ff00, 0xff0000ff, 0xffff0000 };
       final int FACES=FACE_COLORS.length;
-      int SIZE = 128;
+      int SIZE = 200;
       float STROKE = 0.05f*SIZE;
       float OFF = STROKE/2 -1;
-      float OFF2 = 0.577f*SIZE + OFF;
+      float OFF2 = 0.5f*SIZE + OFF;
       float HEIGHT = SIZE - OFF;
       float RADIUS = SIZE/12;
-      float ARC1_H = 0.31f*SIZE;
+      float ARC1_H = 0.2f*SIZE;
       float ARC1_W = SIZE*0.5f;
-      float ARC2_W = 0.152f*SIZE;
-      float ARC2_H = 0.91f*SIZE;
-      float ARC3_W = 0.847f*SIZE;
+      float ARC2_W = 0.153f*SIZE;
+      float ARC2_H = 0.905f*SIZE;
+      float ARC3_W = SIZE-ARC2_W;
 
       Bitmap result = Bitmap.createBitmap(FACES*SIZE,SIZE, Bitmap.Config.ARGB_8888);
       Canvas canvas = new Canvas(result);
@@ -218,7 +218,7 @@ class MeshJoinRenderer implements GLSurfaceView.Renderer
 
       Static4D[] textureMaps = new Static4D[MESHES];
 
-      for(int i=0; i<MESHES; i++) textureMaps[i] = new Static4D(i*0.25f,0.0f,0.25f,0.866f);
+      for(int i=0; i<MESHES; i++) textureMaps[i] = new Static4D(i*0.25f,0.0f,0.25f,1.0f);
 
       MeshBase result = new MeshJoined(meshes);
       result.setTextureMap(textureMaps);
