MCPcopy Create free account
hub / github.com/Code-Bullet/Jump-King / DefaultEncoding

Function DefaultEncoding

libraries/p5.js:1432–1434  ·  view source on GitHub ↗
(font)

Source from the content-addressed store, hash-verified

1430// It loops through all glyphs and finds the appropriate unicode value.
1431// Since it's linear time, other encodings will be faster.
1432function DefaultEncoding(font) {
1433 this.font = font;
1434}
1435
1436DefaultEncoding.prototype.charToGlyphIndex = function(c) {
1437 var code = c.charCodeAt(0);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected