aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/com/jogamp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-03-27 14:12:01 +0200
committerSven Gothel <[email protected]>2023-03-27 14:12:01 +0200
commit9b91a24ee6f383ca53556c466d84baf56f16940b (patch)
tree42379ffbfe2c41835ba9418ecb98fa7251e90868 /src/test/com/jogamp
parent0cea1ffbf415d40b9cff582b15fb5b736ae42580 (diff)
Graph Font: Rename getBBox*() -> getBounds*() to preserve a common semantic name
Diffstat (limited to 'src/test/com/jogamp')
-rw-r--r--src/test/com/jogamp/opengl/test/junit/graph/TestFontsNEWT00.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/graph/TestFontsNEWT00.java b/src/test/com/jogamp/opengl/test/junit/graph/TestFontsNEWT00.java
index 5b254d46d..25af3d910 100644
--- a/src/test/com/jogamp/opengl/test/junit/graph/TestFontsNEWT00.java
+++ b/src/test/com/jogamp/opengl/test/junit/graph/TestFontsNEWT00.java
@@ -101,8 +101,8 @@ public class TestFontsNEWT00 extends UITestCase {
System.err.println(" em "+s0_em+", "+s1_em);
System.err.println(" px "+s0_px+", "+s1_px);
System.err.println(" AABBox");
- System.err.println(" funits "+glyph.getBBoxFU());
- System.err.println(" em "+glyph.getBBox(new AABBox(), new float[3]));
+ System.err.println(" funits "+glyph.getBoundsFU());
+ System.err.println(" em "+glyph.getBounds(new AABBox(), new float[3]));
Assert.assertEquals(s0, s1);