commit 8df64ab9f56f3b86f1a9bf6ffc80bec4d1cbb6b1
Author: Leszek Koltunski <leszek@distoretedandroid.org>
Date:   Thu Nov 3 10:34:25 2016 +0000

    Flag app finished

diff --git a/src/main/java/org/distorted/library/type/Static1D.java b/src/main/java/org/distorted/library/type/Static1D.java
index 9121d5a..8ee36e0 100644
--- a/src/main/java/org/distorted/library/type/Static1D.java
+++ b/src/main/java/org/distorted/library/type/Static1D.java
@@ -73,7 +73,29 @@ public class Static1D implements Data1D
     {
     x = ox;
     }
-  
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the first float.
+ *
+ * @param ox new value of the first float.
+ */
+  public void set1(int ox)
+    {
+    x = ox;
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the first float.
+ *
+ * @param ox new value of the first float.
+ */
+  public void set1(float ox)
+    {
+    x = ox;
+    }
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
  * Return the value of the float contained.
diff --git a/src/main/java/org/distorted/library/type/Static2D.java b/src/main/java/org/distorted/library/type/Static2D.java
index 7cefddb..c5b15c9 100644
--- a/src/main/java/org/distorted/library/type/Static2D.java
+++ b/src/main/java/org/distorted/library/type/Static2D.java
@@ -82,6 +82,28 @@ public class Static2D extends Static1D implements Data2D
     y = oy;
     }
 
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the second float.
+ *
+ * @param oy new value of the second float.
+ */
+  public void set2(int oy)
+    {
+    y = oy;
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the second float.
+ *
+ * @param oy new value of the second float.
+ */
+  public void set2(float oy)
+    {
+    y = oy;
+    }
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
  * Return the value of the second float contained.
diff --git a/src/main/java/org/distorted/library/type/Static3D.java b/src/main/java/org/distorted/library/type/Static3D.java
index 57a4fd7..c405264 100644
--- a/src/main/java/org/distorted/library/type/Static3D.java
+++ b/src/main/java/org/distorted/library/type/Static3D.java
@@ -87,7 +87,29 @@ public class Static3D extends Static2D  implements Data3D
     y = vy;
     z = vz;
     }
-  
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the third float.
+ *
+ * @param oz new value of the third float.
+ */
+  public void set3(int oz)
+    {
+    z = oz;
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the third float.
+ *
+ * @param oz new value of the third float.
+ */
+  public void set3(float oz)
+    {
+    z = oz;
+    }
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
  * Return the value of the third float contained.
diff --git a/src/main/java/org/distorted/library/type/Static4D.java b/src/main/java/org/distorted/library/type/Static4D.java
index 6c92182..d33af6c 100644
--- a/src/main/java/org/distorted/library/type/Static4D.java
+++ b/src/main/java/org/distorted/library/type/Static4D.java
@@ -94,6 +94,28 @@ public class Static4D extends Static3D implements Data4D
     w = vw;
     }
 
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the fourth float.
+ *
+ * @param ow new value of the fourth float.
+ */
+  public void set4(int ow)
+    {
+    w = ow;
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the fourth float.
+ *
+ * @param ow new value of the fourth float.
+ */
+  public void set4(float ow)
+    {
+    w = ow;
+    }
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
  * Return the value of the fourth float contained.
diff --git a/src/main/java/org/distorted/library/type/Static5D.java b/src/main/java/org/distorted/library/type/Static5D.java
index a52ff8a..3f859af 100644
--- a/src/main/java/org/distorted/library/type/Static5D.java
+++ b/src/main/java/org/distorted/library/type/Static5D.java
@@ -100,6 +100,28 @@ public class Static5D extends Static4D implements Data5D
     v = vv;
     }
 
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the fifth float.
+ *
+ * @param ov new value of the fifth float.
+ */
+  public void set5(int ov)
+    {
+    v = ov;
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * Resets the value of the fifth float.
+ *
+ * @param ov new value of the fifth float.
+ */
+  public void set5(float ov)
+    {
+    v = ov;
+    }
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
  * Return the value of the fifth float contained.
