diff options
author | Sven Gothel <[email protected]> | 2014-02-28 00:02:09 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-02-28 00:02:09 +0100 |
commit | caa9ba036179d3a644e258c444f5b464df480c27 (patch) | |
tree | 1dcf50e98e575488358efb52def48dd59667ee91 /src/jogl/classes/com/jogamp/graph/curve | |
parent | 34aebbf54491b8f7e98bee3f45f8b58b817a6db5 (diff) |
Bug 801: Graph TextRenderer Cleanup Part-6: Fix TypecastRenderer; Minor Editing
Fix TypecastRenderer:
- Ensure quad shapes are closed!
- Revalidate point -> shape interpretation using orig. Typcast code
- Fix 'midPoint(..)' use float values
Diffstat (limited to 'src/jogl/classes/com/jogamp/graph/curve')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java index 50bd79e1c..f4cdffd5e 100644 --- a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java +++ b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java @@ -39,8 +39,9 @@ import com.jogamp.opengl.math.VectorUtil; import com.jogamp.opengl.math.geom.AABBox; -/** A Generic shape objects which is defined by a list of Outlines. - * This Shape can be transformed to Triangulations. +/** + * A Generic shape objects which is defined by a list of Outlines. + * This Shape can be transformed to triangulations. * The list of triangles generated are render-able by a Region object. * The triangulation produced by this Shape will define the * closed region defined by the outlines. |