summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/graph/geom/opengl
diff options
context:
space:
mode:
authorRami Santina <[email protected]>2011-03-30 14:31:48 +0300
committerRami Santina <[email protected]>2011-03-30 14:31:48 +0300
commitfca85c495e24322dd8870832fe3934fbe2d40236 (patch)
tree7026aa476ad884b7db4c807a8e6851ee1e71c60b /src/com/jogamp/graph/geom/opengl
parent2d7cc275ccea2e11deeaf02f63c7984a6c09bf4f (diff)
Added inclass documentation to AABBox; Misc changes
Diffstat (limited to 'src/com/jogamp/graph/geom/opengl')
-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];