CMYK & Blending Modes
in
Programming Questions
•
3 years ago
I've searched everywhere for how one would go about creating
this effect in Processing but to no avail.
Here is a very basic attempt but for some reason the MULTIPLY MODE for blending does not work as expected :
int cyan = (#009ee0);
int magenta = (#e2007a);
int yellow = (#ffed00);
void setup() {
size (400,400);
noStroke();
background(255);
fill(cyan,MULTIPLY);
ellipse(250,250,150,150);
fill(magenta,MULTIPLY);
ellipse(150,250,150,150);
fill(yellow,MULTIPLY);
ellipse(200, 150, 150,150);
}
1