diff options
author | Sven Gothel <[email protected]> | 2011-05-05 13:07:42 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-05-05 13:07:42 +0200 |
commit | 59aa8737528743b83cf56b804c9d713bc325c97c (patch) | |
tree | cdc23f121d6b421de3fb210159048112a2516c1c /src/jogl/classes/jogamp | |
parent | 8578860e5f9f1b98651373accc53b0bfe6f07ba2 (diff) |
Merging OutlineShape.VerticesState enum type (John Pritchard <[email protected]> https://github.com/syntelos/jogl/commit/05a7ec92d30e1e688b1eb7cc317cad83a0e8fd60#L0R59)
Diffstat (limited to 'src/jogl/classes/jogamp')
-rw-r--r-- | src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java b/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java index 91a7e4246..433019361 100644 --- a/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java +++ b/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java @@ -67,7 +67,7 @@ public class GlyphShape { pathIterator.next(); } } - shape.transformOutlines(OutlineShape.QUADRATIC_NURBS); + shape.transformOutlines(OutlineShape.VerticesState.QUADRATIC_NURBS); } public final Vertex.Factory<? extends Vertex> vertexFactory() { return shape.vertexFactory(); } |