diff options
author | Sven Gothel <sgothel@jausoft.com> | 2023-08-28 22:54:36 +0200 |
---|---|---|
committer | Sven Gothel <sgothel@jausoft.com> | 2023-08-28 22:54:36 +0200 |
commit | 733cc5272cfed10fa07b707e29fd756f44581508 (patch) | |
tree | 1f175df7f89ad0c1fe7c810aa6e4ac2c535c9434 /src/jogl/classes/com/jogamp | |
parent | d6056f4daf2bd6f19cc3f8ff7ca1a812d8db9695 (diff) |
Graph Loop: Make initFromPolyline() and locateClosestVertex() more robust, report error but do not crash.
This behavior has been evaluated with a few fonts and the WIP FontView01 demo application.
Diffstat (limited to 'src/jogl/classes/com/jogamp')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/curve/Region.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/Region.java b/src/jogl/classes/com/jogamp/graph/curve/Region.java index 28ac1a134..345b45eab 100644 --- a/src/jogl/classes/com/jogamp/graph/curve/Region.java +++ b/src/jogl/classes/com/jogamp/graph/curve/Region.java @@ -61,7 +61,7 @@ import com.jogamp.opengl.util.texture.TextureSequence; */ public abstract class Region { - /** Debug flag for region impl (graph.curve) */ + /** Debug flag for [com.]jogamp.graph.curve.* incl. Region (graph.curve) */ public static final boolean DEBUG = Debug.debug("graph.curve"); public static final boolean DEBUG_INSTANCE = Debug.debug("graph.curve.Instance"); |