aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/graph/geom/opengl/SVertex.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/jogamp/graph/geom/opengl/SVertex.java')
-rw-r--r--src/com/jogamp/graph/geom/opengl/SVertex.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/jogamp/graph/geom/opengl/SVertex.java b/src/com/jogamp/graph/geom/opengl/SVertex.java
index 37ce71a40..681067e40 100644
--- a/src/com/jogamp/graph/geom/opengl/SVertex.java
+++ b/src/com/jogamp/graph/geom/opengl/SVertex.java
@@ -31,6 +31,10 @@ package com.jogamp.graph.geom.opengl;
import com.jogamp.graph.geom.Vertex;
import com.jogamp.graph.math.VectorUtil;
+/** A Simple Vertex Implementation. Where the coordinates, and other attributes are
+ * float based, and the coordinates and texture coordinates are saved in two float arrays.
+ *
+ */
public class SVertex implements Vertex {
private int id = Integer.MAX_VALUE;
protected float[] coord = new float[3];