mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Expand color import test.
This commit is contained in:
@@ -20,6 +20,8 @@ public class colorimport extends PApplet {
|
||||
|
||||
|
||||
boolean test = true;
|
||||
int c1 = color(255, 255, 255);
|
||||
int c2 = test ? 0xFFA011CD : 0xC0C0C0C0;
|
||||
|
||||
noLoop();
|
||||
}
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import test.color;
|
||||
|
||||
boolean test = true;
|
||||
color c1 = color(255, 255, 255);
|
||||
color c2 = test ? #A011CD : #C0C0C0C0;
|
||||
|
||||
Reference in New Issue
Block a user