Example #1
0
 public ColState(int r, int g, int b, int a) {
   this(Utils.clipcol(r, g, b, a));
 }
Example #2
0
 public Fog(Color c, float s, float e) {
   this.c = c;
   this.ca = Utils.c2fa(c);
   this.s = s;
   this.e = e;
 }
Example #3
0
 public ColState(Color c) {
   this.c = c;
   this.ca = Utils.c2fa(c);
 }
Example #4
0
 public ColorMask(Color col) {
   this.col = Utils.c2fa(col);
 }