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