( 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)
| 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); |
no outgoing calls
no test coverage detected