aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/graph/font
Commit message (Expand)AuthorAgeFilesLines
* TypecastGlyph: Add complex/simple info in toString()Sven Göthel2024-02-151-2/+2
* Bug 1501 Graph Delaunay: Replace MaterialIconsRound-Regular.ttf with fixed wi...Sven Göthel2024-02-121-0/+0
* Typecast: Re-apply overwritten stability changes (NPE, redundancy)Sven Göthel2024-02-031-11/+12
* Typecast: Cleanup: finalSven Göthel2024-02-032-18/+19
* Hausmacher Merge: Complete merge part-1 into JOGL from our typecast branch; A...Sven Göthel2024-02-031-0/+65
* Cleanup (static, final, whitespace, ..) post Hausmacher MergeSven Göthel2024-02-0319-426/+433
* Hausmacher Merge: Complete merge part-1: Compile and test clean (pre-write-fe...Sven Göthel2024-02-033-28/+32
* Enhanced dump format of cmap table.Bernhard Haumacher2024-02-038-36/+77
* Added rudimentary documentation to the CFF table.Bernhard Haumacher2024-02-031-1/+35
* Added support for reading the SVG table. # Conflicts: # src/jogl/classes/joga...Bernhard Haumacher2024-02-034-48/+363
* Added documentation to the 'loca' table.Bernhard Haumacher2024-02-031-5/+33
* Improved documentation of Cmap table.Bernhard Haumacher2024-02-038-6/+331
* Bugfix: Format 14 header of Cmap table is not skipped correctly.Bernhard Haumacher2024-02-031-2/+1
* Added offset table as member to the font.Bernhard Haumacher2024-02-035-17/+52
* Added documentation to the HmtxTable.Bernhard Haumacher2024-02-031-12/+148
* Added documentation to the 'glyf' table and structures.Bernhard Haumacher2024-02-0319-152/+989
* Getters for macStyle bits, enhanced docu for fontDirectionHint.Bernhard Haumacher2024-02-032-16/+150
* Added JavaDoc references, split version fields according to spec.Bernhard Haumacher2024-02-031-6/+100
* Documentation for `HeadTable`Bernhard Haumacher2024-02-0332-55/+439
* Graph/GraphUI: Move getDefault*() to FontFactory and add {get,set}FallbackFon...Sven Göthel2024-02-031-0/+11
* Graph: Drop non-existing 'JAVA' font from FontFactorySven Göthel2024-01-251-185/+0
* Bug 1463 - Graph Font: Whitespace or undefined Glyphs shall not cover (any) h...Sven Gothel2023-09-261-4/+7
* Bug 1462 - Graph Font: Add name + codepoint to ID and Glyph mapping plus trav...Sven Gothel2023-09-242-116/+215
* Graph Fonts: Add 'Material Icons Round-Regular' (APL-2 license) and use it in...Sven Gothel2023-09-243-0/+86
* Graph Fonts UbuntuFontLoader: Factor out FontLoaderImpl and have get(..) sync...Sven Gothel2023-09-242-103/+139
* Graph Fonts: Remove not required text files from Ubuntu fontsSven Gothel2023-09-243-409/+0
* Bug 1452 - Decouple math functionality to 'com.jogamp.math' to be toolkit agn...Sven Gothel2023-09-207-8/+8
* Graph Font + Glyph: Fix whitespace definition: Include 'no original underlyin...Sven Gothel2023-09-011-7/+9
* Graph Font: Make TypecastRenderer.DEBUG package private to be used by Typecas...Sven Gothel2023-08-281-1/+1
* Graph Font + Glyph: More robust detetection and API definition of non-contour...Sven Gothel2023-08-282-55/+109
* Relocate 'jar/atomic/jogl-fonts-p0.jar' -> 'jar/jogl-fonts-p0.jar' to simplif...Sven Gothel2023-05-201-2/+1
* Graph OutlineShape.get{Outline->}VectexCount() renamedSven Gothel2023-04-201-1/+1
* Graph Font.getGlyphShapeBounds(): Use variant w/ 2 temp AffineTransform match...Sven Gothel2023-04-181-4/+5
* Graph + GraphUI: Consolidate Vertex: Drop SVertex and factory, use Vec[234]f ...Sven Gothel2023-04-182-8/+7
* Typecast Font.getGlyph(..): Fix Glyph case w/ 0 getOutlineVectexCount() -> is...Sven Gothel2023-04-141-4/+14
* Typecast Font.Glyph: Expose isUndefined(), i.e. name == ".notdef"Sven Gothel2023-04-141-0/+3
* Typecast: Expose (new) getGlyphCount(): GlyfTable.getSize() -> (OTFont,Font)....Sven Gothel2023-04-144-1/+13
* Typecast GlyfTable: Use `final` qualifier (cleanup)Sven Gothel2023-04-141-14/+14
* Graph TypecastFont: Avoid PostTable (out-of-bounds) for glyph_name when not e...Sven Gothel2023-04-141-3/+7
* Math: Complete Matrix4f w/ Vec[234]f and adopt it throughout Quaternion, Ray,...Sven Gothel2023-04-053-8/+8
* Graph Font: TypecastFont: getGlyphBoundsFU() + processString(): If isWhitespa...Sven Gothel2023-03-281-4/+6
* Graph Font.GlyphVisitor*: Pass 'char symbol' to visitor, passing full text-pr...Sven Gothel2023-03-281-5/+3
* Graph Font.Glyph: Add getFont() (the owner)Sven Gothel2023-03-281-0/+5
* Graph Font: Rename getBBox*() -> getBounds*() to preserve a common semantic nameSven Gothel2023-03-273-8/+8
* Graph: Fix Font.getGlyphBoundsFU(): FU of advance is requested here.Sven Gothel2023-03-271-1/+1
* Graph Font Processing: Use Font.GlyphVisitor instead of OutlineShape.Visitor,...Sven Gothel2023-03-221-9/+15
* Graph Font Processing: Produce a 'whitespace' Glyph w/ an OutlineShape (box) ...Sven Gothel2023-03-223-5/+76
* Graph: Cleanup Vertex.Factory referencing: Only bind to OutlineShape and use ...Sven Gothel2023-03-211-11/+8
* Graph: Font: Add equals() + hash() API doc; GraphUI's Label*.setText(): Only ...Sven Gothel2023-03-081-2/+1
* Graph Perf: Add Region.countOutlineShape(), Font.processString(Visitor2,..), ...Sven Gothel2023-03-071-5/+18