Glyphs are positioned on a baseline at (x, y), using font metrics to determine their relative placement. @param font Font used for this run @param text Text to append in this run @param x horizontal offset within the blob @param y vertical offset within the blob @return thi
(Font font, String text, float x, float y)
| 56 | * @return this |
| 57 | */ |
| 58 | public TextBlobBuilder appendRun(Font font, String text, float x, float y) { |
| 59 | return appendRun(font, font.getStringGlyphs(text), x, y, null); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * <p>Glyphs are positioned on a baseline at (x, y), using font metrics to |
no test coverage detected