diff options
author | Sven Gothel <[email protected]> | 2012-05-15 16:55:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-05-15 16:55:21 +0200 |
commit | 1d58578ebc794f339a0a1a5e7fbc0fcbb704762c (patch) | |
tree | b78eb898649fa803cb98c333f0d239c4ffaf2501 /src/jogl/classes/jogamp/graph/font/FontInt.java | |
parent | 3ae6f3fdc232529ce28679b6ec4624b7d3377e9b (diff) |
Graph/Glyph: Clarify public Font.Glyph and private FontInt.GlyphInt
Diffstat (limited to 'src/jogl/classes/jogamp/graph/font/FontInt.java')
-rw-r--r-- | src/jogl/classes/jogamp/graph/font/FontInt.java | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/FontInt.java b/src/jogl/classes/jogamp/graph/font/FontInt.java index 37660bb2c..20e1ec028 100644 --- a/src/jogl/classes/jogamp/graph/font/FontInt.java +++ b/src/jogl/classes/jogamp/graph/font/FontInt.java @@ -38,13 +38,7 @@ import com.jogamp.graph.geom.Vertex.Factory; public interface FontInt extends Font { - public interface Glyph extends Font.Glyph { - // reserved special glyph IDs - // http://scripts.sil.org/cms/scripts/page.php?item_id=IWS-Chapter08#ba57949e - public static final int ID_UNKNOWN = 0; - public static final int ID_CR = 2; - public static final int ID_SPACE = 3; - + public interface GlyphInt extends Font.Glyph { public Path2D getPath(); // unscaled path public Path2D getPath(float pixelSize); } |