diff options
author | Rami Santina <[email protected]> | 2011-03-31 18:38:23 +0300 |
---|---|---|
committer | Rami Santina <[email protected]> | 2011-03-31 18:38:23 +0300 |
commit | e8c69e69374b6650e37594ebf104602fb06b548b (patch) | |
tree | f420595e0ec1bb43d023693b195792448b4371b6 /src/com/jogamp/graph/curve/Region.java | |
parent | 1c1a7d7ad51ea2041a5a121f034d4d748827b16c (diff) |
Inclass Documentation cleanup of public API
Diffstat (limited to 'src/com/jogamp/graph/curve/Region.java')
-rwxr-xr-x | src/com/jogamp/graph/curve/Region.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/jogamp/graph/curve/Region.java b/src/com/jogamp/graph/curve/Region.java index 143b6f502..5c4e8dad1 100755 --- a/src/com/jogamp/graph/curve/Region.java +++ b/src/com/jogamp/graph/curve/Region.java @@ -64,7 +64,7 @@ public interface Region { /** Renders the associated OGL objects specifying
* current width/hight of window for multi pass rendering
* of the region.
- * @param matrix current pmv matrix.
+ * @param matrix current {@link PMVMatrix}.
* @param vp_width current screen width
* @param vp_height current screen height
* @param width texture width for mp rendering
@@ -73,7 +73,7 @@ public interface Region { */
public void render(PMVMatrix matrix, int vp_width, int vp_height, int width);
- /** Adds a list of {@code Triangle} objects to the Region
+ /** Adds a list of {@link Triangle} objects to the Region
* These triangles are to be binded to OGL objects
* on the next call to {@code update}
* @param tris an arraylist of triangle objects
@@ -91,7 +91,7 @@ public interface Region { */
public int getNumVertices();
- /** Adds a list of {@code Vertex} objects to the Region
+ /** Adds a list of {@link Vertex} objects to the Region
* These vertices are to be binded to OGL objects
* on the next call to {@code update}
* @param verts an arraylist of vertex objects
|