We are about to switch to a new forum software. Until then we have removed the registration on this forum.
The Table object has several methods to process (get/set) data types such as int, float, and string values. However, the data type color seems to be missing from the methods. Do I break down the colors into individual r, g and blue values and process them as integers, or is there a simpler way. Assume that I already have color variables with assigned colors. Thanks
Answers
Under Java Mode,
color
is the same asint
datatype:https://Processing.org/reference/color_datatype.html
thanks a lot