MCPcopy Index your code
hub / github.com/processing/processing / hex

Method hex

core/src/processing/core/PApplet.java:10220–10222  ·  view source on GitHub ↗

( begin auto-generated from hex.xml ) Converts a byte, char, int, or color to a String containing the equivalent hexadecimal notation. For example color(0, 102, 153) will convert to the String "FF006699". This function can help make your geeky debugging sessions much happier. Note that

(byte value)

Source from the content-addressed store, hash-verified

10218 * @see PApplet#unbinary(String)
10219 */
10220 static final public String hex(byte value) {
10221 return hex(value, 2);
10222 }
10223
10224 static final public String hex(char value) {
10225 return hex(value, 4);

Callers 8

textCharImplMethod · 0.95
loadBinaryMethod · 0.95
textCharImplMethod · 0.95
setColorMethod · 0.95
setColorMethod · 0.95
emitAsHTMLMethod · 0.95
statusToolTipMethod · 0.95
getHexColorMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected