This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Name

int()

Examples
float f = 65.0;
int i = int(f);
println(f + " : " + i);  // Prints "65.0 : 65"

char c = 'E';
i = int(c);
println(c + " : " + i);  // Prints "E : 69"
Description Converts any value of a primitive data type (boolean, byte, char, color, float, int, or long) or String to its integer representation.

When an array of values is passed in, then an int array of the same length is returned.
Updated on January 1, 2021 03:38:12am EST