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 | |
parent | f747a60d551716e579e8d97c5a984b5ad8a7b578 (diff) |
Graph: Fix minor apidoc issues
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/curve/Region.java | 5 | ||||
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/geom/Outline.java | 5 |
2 files changed, 7 insertions, 3 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; } diff --git a/src/jogl/classes/com/jogamp/graph/geom/Outline.java b/src/jogl/classes/com/jogamp/graph/geom/Outline.java index 075d957ea..ec0225b37 100644 --- a/src/jogl/classes/com/jogamp/graph/geom/Outline.java +++ b/src/jogl/classes/com/jogamp/graph/geom/Outline.java @@ -32,6 +32,8 @@ import java.util.ArrayList; import jogamp.graph.geom.plane.AffineTransform; import com.jogamp.graph.geom.Vertex; +import com.jogamp.graph.curve.OutlineShape; +import com.jogamp.graph.curve.Region; import com.jogamp.opengl.math.FloatUtil; import com.jogamp.opengl.math.VectorUtil; import com.jogamp.opengl.math.geom.AABBox; @@ -45,7 +47,8 @@ import com.jogamp.opengl.math.geom.AABBox; * * Note: An outline should be closed to be rendered as a region. * - * @see OutlineShape, Region + * @see OutlineShape + * @see Region */ public class Outline implements Comparable<Outline> { |