commit 10836924c470648ec99abce7ce48c8add4c34479
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Wed Jun 10 13:24:06 2020 +0100

    new app icons; skeleton of reading/write a Mesh from/to a file.

diff --git a/src/main/java/org/distorted/library/mesh/MeshBase.java b/src/main/java/org/distorted/library/mesh/MeshBase.java
index cf71ed9..1a94444 100644
--- a/src/main/java/org/distorted/library/mesh/MeshBase.java
+++ b/src/main/java/org/distorted/library/mesh/MeshBase.java
@@ -30,6 +30,8 @@ import org.distorted.library.main.InternalBuffer;
 import org.distorted.library.program.DistortedProgram;
 import org.distorted.library.type.Static4D;
 
+import java.io.InputStream;
+import java.io.OutputStream;
 import java.nio.ByteBuffer;
 import java.nio.ByteOrder;
 import java.nio.FloatBuffer;
@@ -767,6 +769,25 @@ public abstract class MeshBase
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 // PUBLIC API
 ///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Write tthe Mesh to an OutputStream.
+ */
+   public void write(OutputStream stream)
+     {
+
+     }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Read the mesh from an InputStream.
+ */
+   public void read(InputStream stream)
+     {
+
+     }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
 /**
  * When rendering this Mesh, do we want to render the Normal vectors as well?
  * <p>
