diff options
author | Sven Gothel <[email protected]> | 2011-03-25 08:51:24 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-03-25 08:51:24 +0100 |
commit | 56de85032f687748d99af63f90b6798d14b9c04b (patch) | |
tree | 0d58653b2a55b32c88bc465ee9b334b71b9e5332 /src/com/jogamp/graph/font | |
parent | c87998372f09466dd682f208fcddebae954c7af8 (diff) |
Make com.jogamp.graph.geom.plane non public: jogamp.graph.geom.plane, this incl. creating the non public FontInt interface for Path2D access
Diffstat (limited to 'src/com/jogamp/graph/font')
-rw-r--r-- | src/com/jogamp/graph/font/Font.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/com/jogamp/graph/font/Font.java b/src/com/jogamp/graph/font/Font.java index 5c26e8626..0abaad5b5 100644 --- a/src/com/jogamp/graph/font/Font.java +++ b/src/com/jogamp/graph/font/Font.java @@ -28,8 +28,6 @@ package com.jogamp.graph.font; import com.jogamp.graph.geom.AABBox; -import com.jogamp.graph.geom.plane.AffineTransform; -import com.jogamp.graph.geom.plane.Path2D; public interface Font { @@ -60,8 +58,6 @@ public interface Font { public AABBox getBBox(); public float getAdvance(); public float getAdvanceForPixelSize(float pixelSize, boolean useFrationalMetrics); - public Path2D getPath(); - public Path2D getPathForPixelSize(float pixelSize); } @@ -74,9 +70,5 @@ public interface Font { public float getStringHeight(String string); public AABBox getStringBounds(CharSequence string); - public void getOutline(String string, - AffineTransform transform, - Path2D[] result); - public int getNumGlyphs(); }
\ No newline at end of file |