diff options
author | Sven Gothel <[email protected]> | 2014-10-09 12:28:32 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-10-09 12:28:32 +0200 |
commit | 38f77bba3013d1cc22bdb5a3f69dc7fb86dfe342 (patch) | |
tree | 6d67a72757135f887104192aa0c9c9a0c1feb859 /src/jogl/classes/com/jogamp/graph/curve | |
parent | f747a60d551716e579e8d97c5a984b5ad8a7b578 (diff) |
Graph: Fix minor apidoc issues
Diffstat (limited to 'src/jogl/classes/com/jogamp/graph/curve')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/curve/Region.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/Region.java b/src/jogl/classes/com/jogamp/graph/curve/Region.java index 350e3ef41..023ca8373 100644 --- a/src/jogl/classes/com/jogamp/graph/curve/Region.java +++ b/src/jogl/classes/com/jogamp/graph/curve/Region.java @@ -35,6 +35,7 @@ import jogamp.opengl.Debug; import com.jogamp.graph.geom.Triangle; import com.jogamp.graph.geom.Vertex; +import com.jogamp.graph.curve.opengl.GLRegion; import com.jogamp.opengl.math.geom.AABBox; import com.jogamp.opengl.math.geom.Frustum; import com.jogamp.opengl.util.texture.TextureSequence; @@ -43,7 +44,7 @@ import com.jogamp.opengl.util.texture.TextureSequence; * Abstract Outline shape representation define the method an OutlineShape(s) * is bound and rendered. * - * @see com.jogamp.graph.curve.opengl.GLRegion + * @see GLRegion */ public abstract class Region { @@ -179,7 +180,7 @@ public abstract class Region { protected abstract void pushIndex(int idx); /** - * Return bit-field of render modes, see {@link com.jogamp.graph.curve.opengl.GLRegion#create(int, TextureSequence)}. + * Return bit-field of render modes, see {@link GLRegion#create(int, TextureSequence)}. */ public final int getRenderModes() { return renderModes; } |