commit 6b8166789910e8b987a3eb3e2dc78276f7f7c3a6
Author: Leszek Koltunski <leszek@distoretedandroid.org>
Date:   Tue Jun 27 12:22:46 2017 +0100

    Javadoc.

diff --git a/src/main/java/org/distorted/library/effect/PostprocessEffectGlow.java b/src/main/java/org/distorted/library/effect/PostprocessEffectGlow.java
index 4edcd6c..959ab0a 100644
--- a/src/main/java/org/distorted/library/effect/PostprocessEffectGlow.java
+++ b/src/main/java/org/distorted/library/effect/PostprocessEffectGlow.java
@@ -27,7 +27,9 @@ import org.distorted.library.type.Data1D;
 import org.distorted.library.type.Data4D;
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
-
+/**
+ * Add a (colored) glow about each object in the Framebuffer.
+ */
 public class PostprocessEffectGlow extends PostprocessEffect
   {
   private static final int MAX_HALO = 50;
diff --git a/src/main/java/org/distorted/library/effect/VertexEffect.java b/src/main/java/org/distorted/library/effect/VertexEffect.java
index c8bfaa5..67d8dba 100644
--- a/src/main/java/org/distorted/library/effect/VertexEffect.java
+++ b/src/main/java/org/distorted/library/effect/VertexEffect.java
@@ -87,7 +87,7 @@ public abstract class VertexEffect extends Effect
 // PUBLIC API
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * Return the number of Fragment effects enabled.
+ * Return the number of Vertex effects enabled.
  */
   public static int getNumEnabled()
     {
diff --git a/src/main/java/org/distorted/library/effect/VertexEffectDeform.java b/src/main/java/org/distorted/library/effect/VertexEffectDeform.java
index 4d67b05..3a7b019 100644
--- a/src/main/java/org/distorted/library/effect/VertexEffectDeform.java
+++ b/src/main/java/org/distorted/library/effect/VertexEffectDeform.java
@@ -151,9 +151,9 @@ public class VertexEffectDeform extends VertexEffect
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
  * Deform the whole Mesh with a (possibly changing in time) vector of force applied to
- * a (possibly changing in time) point on the Object.
+ * a (possibly changing in time) point on the Mesh.
  *
- * @param vector Vector of force that deforms the shape of the whole Object.
+ * @param vector Vector of force that deforms the Mesh.
  * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
  * @param region Region that masks the Effect.
  */
@@ -168,9 +168,9 @@ public class VertexEffectDeform extends VertexEffect
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
  * Deform the whole Mesh with a (possibly changing in time) vector of force applied to
- * a (possibly changing in time) point on the Object.
+ * a (possibly changing in time) point on the Mesh.
  *
- * @param vector Vector of force that deforms the shape of the whole Object.
+ * @param vector Vector of force that deforms the Mesh.
  * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
  */
   public VertexEffectDeform(Data3D vector, Data3D center)
diff --git a/src/main/java/org/distorted/library/effect/VertexEffectDistort.java b/src/main/java/org/distorted/library/effect/VertexEffectDistort.java
index 7f9a2f3..46a4bb9 100644
--- a/src/main/java/org/distorted/library/effect/VertexEffectDistort.java
+++ b/src/main/java/org/distorted/library/effect/VertexEffectDistort.java
@@ -135,7 +135,7 @@ public class VertexEffectDistort extends VertexEffect
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * Distort a (possibly changing in time) part of the Object by a (possibly changing in time) vector of force.
+ * Distort a (possibly changing in time) part of the Mesh by a (possibly changing in time) vector of force.
  *
  * @param vector vector of force the Center of the Effect is currently being dragged with.
  * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
@@ -151,7 +151,7 @@ public class VertexEffectDistort extends VertexEffect
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * Distort the whole Object by a (possibly changing in time) vector of force.
+ * Distort the whole Mesh by a (possibly changing in time) vector of force.
  *
  * @param vector vector of force the Center of the Effect is currently being dragged with.
  * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
