Example #1
0
 public IParticleOnCurve hsb(double h, double s, double b) {
   super.hsb(h, s, b);
   return this;
 }
Example #2
0
 public IParticleOnCurve clr(Color c, double alpha) {
   super.clr(c, alpha);
   return this;
 }
Example #3
0
 public IParticleOnCurve clr(float fgray) {
   super.clr(fgray);
   return this;
 }
Example #4
0
 public IParticleOnCurve show() {
   super.show();
   return this;
 }
Example #5
0
 public IParticleOnCurve clr(IColor c, float alpha) {
   super.clr(c, alpha);
   return this;
 }
Example #6
0
 /** remove target object. */
 public IParticleOnCurve removeTarget(IObject obj) {
   super.removeTarget(obj);
   return this;
 }
Example #7
0
 /** ************************************ methods of IObject *********************************** */
 public IParticleOnCurve name(String nm) {
   super.name(nm);
   return this;
 }
Example #8
0
 public IParticleOnCurve setColor(float fgray, float falpha) {
   super.setColor(fgray, falpha);
   return this;
 }
Example #9
0
 public IParticleOnCurve setColor(double dgray, double dalpha) {
   super.setColor(dgray, dalpha);
   return this;
 }
Example #10
0
 public IParticleOnCurve setColor(int gray) {
   super.setColor(gray);
   return this;
 }
Example #11
0
 public IParticleOnCurve setColor(int gray, int alpha) {
   super.setColor(gray, alpha);
   return this;
 }
Example #12
0
 public IParticleOnCurve setColor(Color c, float alpha) {
   super.setColor(c, alpha);
   return this;
 }
Example #13
0
 public IParticleOnCurve setColor(Color c) {
   super.setColor(c);
   return this;
 }
Example #14
0
 public IParticleOnCurve setColor(IColor c, double alpha) {
   super.setColor(c, alpha);
   return this;
 }
Example #15
0
 /** add terget object to be updated by this dynamic object. */
 public IParticleOnCurve target(IObject targetObj) {
   super.target(targetObj);
   return this;
 }
Example #16
0
 public IParticleOnCurve setColor(int r, int g, int b, int a) {
   super.setColor(r, g, b, a);
   return this;
 }
Example #17
0
 public IParticleOnCurve removeTarget(int i) {
   super.removeTarget(i);
   return this;
 }
Example #18
0
 public IParticleOnCurve setColor(float fr, float fg, float fb, float fa) {
   super.setColor(fr, fg, fb, fa);
   return this;
 }
Example #19
0
 /** update all terget objects (should be called when the dynamic object is updated). */
 public void updateTarget() {
   super.updateTarget();
 }
Example #20
0
 public IParticleOnCurve setColor(double dr, double dg, double db, double da) {
   super.setColor(dr, dg, db, da);
   return this;
 }
Example #21
0
 public IParticleOnCurve layer(ILayer l) {
   super.layer(l);
   return this;
 }
Example #22
0
 public IParticleOnCurve setHSBColor(float h, float s, float b) {
   super.setHSBColor(h, s, b);
   return this;
 }
Example #23
0
 public IParticleOnCurve hide() {
   super.hide();
   return this;
 }
Example #24
0
 public IParticleOnCurve setHSBColor(double h, double s, double b) {
   super.setHSBColor(h, s, b);
   return this;
 }
Example #25
0
 public IParticleOnCurve clr(Color c) {
   super.clr(c);
   return this;
 }
Example #26
0
 public IParticleOnCurve weight(double w) {
   super.weight(w);
   return this;
 }
Example #27
0
 public IParticleOnCurve clr(int gray) {
   super.clr(gray);
   return this;
 }
Example #28
0
 public IParticleOnCurve weight(float w) {
   super.weight(w);
   return this;
 }
Example #29
0
 public IParticleOnCurve clr(double dgray) {
   super.clr(dgray);
   return this;
 }
Example #30
0
 public IParticleOnCurve hsb(float h, float s, float b) {
   super.hsb(h, s, b);
   return this;
 }