MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / charsWidth

Method charsWidth

src/org/albite/font/AlbiteFont.java:25–35  ·  view source on GitHub ↗
(
            final char[] c, final int offset, final int length)

Source from the content-addressed store, hash-verified

23 }
24
25 public final int charsWidth(
26 final char[] c, final int offset, final int length) {
27
28 int res = 0;
29
30 for (int i = offset; i < offset + length; i++) {
31 res += charWidth(c[i]);
32 }
33
34 return res;
35 }
36
37 public abstract int charWidth(char c);
38

Callers 4

TextPageMethod · 0.95
paintMethod · 0.95
drawClockMethod · 0.80
drawMethod · 0.80

Calls 1

charWidthMethod · 0.95

Tested by

no test coverage detected