Beispiel #1
0
 public IParticleOnCurve clr(double dgray) {
   super.clr(dgray);
   return this;
 }
Beispiel #2
0
 public IParticleOnCurve clr(int gray) {
   super.clr(gray);
   return this;
 }
Beispiel #3
0
 public IParticleOnCurve clr(float fgray) {
   super.clr(fgray);
   return this;
 }
Beispiel #4
0
 public IParticleOnCurve clr(Color c) {
   super.clr(c);
   return this;
 }
Beispiel #5
0
 public IParticleOnCurve clr(Color c, double alpha) {
   super.clr(c, alpha);
   return this;
 }
Beispiel #6
0
 public IParticleOnCurve clr(double dr, double dg, double db, double da) {
   super.clr(dr, dg, db, da);
   return this;
 }
Beispiel #7
0
 public IParticleOnCurve clr(IColor c, float alpha) {
   super.clr(c, alpha);
   return this;
 }
Beispiel #8
0
 public IParticleOnCurve clr(float fr, float fg, float fb, float fa) {
   super.clr(fr, fg, fb, fa);
   return this;
 }
Beispiel #9
0
 public IParticleOnCurve clr(int r, int g, int b, int a) {
   super.clr(r, g, b, a);
   return this;
 }
Beispiel #10
0
 public IParticleOnCurve clr(double dgray, double dalpha) {
   super.clr(dgray, dalpha);
   return this;
 }
Beispiel #11
0
 public IParticleOnCurve clr(float fgray, float falpha) {
   super.clr(fgray, falpha);
   return this;
 }
Beispiel #12
0
 public IParticleOnCurve clr(int gray, int alpha) {
   super.clr(gray, alpha);
   return this;
 }