-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathIParticle.java
518 lines (421 loc) · 24.2 KB
/
IParticle.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
/*---
iGeo - http://igeo.jp
Copyright (c) 2002-2013 Satoru Sugihara
This file is part of iGeo.
iGeo is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, version 3.
iGeo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with iGeo. If not, see <http://www.gnu.org/licenses/>.
---*/
package igeo;
//import java.awt.Color;
import java.util.ArrayList;
/**
Class of an agent with IParticleGeo.
@author Satoru Sugihara
*/
public class IParticle extends IPointAgent implements IParticleI{
public IParticleGeo particle;
/** only to refer to particle.vel and particle.frc */
public IVec vel, frc;
public IParticle(){ super(); initParticleAgent(); }
public IParticle(double x, double y, double z){ super(x,y,z); initParticleAgent(); }
public IParticle(IVec p){ super(p); initParticleAgent(); }
public IParticle(IVecI p){ super(p); initParticleAgent(); }
public IParticle(IParticleGeo ptcl){
super(ptcl.pos);
initParticleAgent(ptcl);
}
public IParticle(IParticle p){ super((IPointAgent)p); initParticleAgent(p); }
public IParticle(double x, double y, double z, double vx, double vy, double vz){ super(x,y,z); initParticleAgent(new IVec(vx,vy,vz)); }
public IParticle(IVec p, IVec vel){ super(p); initParticleAgent(vel); }
public IParticle(IVecI p, IVecI vel){ super(p); initParticleAgent(vel); }
public IParticle(IParticleGeo ptcl, IVecI vel){ super(ptcl.pos); initParticleAgent(ptcl,vel); }
public IParticle(IParticle p, IVecI vel){ super((IPointAgent)p); initParticleAgent(vel); }
// out of attached geometries
public IParticle(IGeometry... geometries){
this();
if(geometries==null||geometries.length==0){
pos = new IVec();
}
else{
IVec center = new IVec();
for(int i=0; i<geometries.length; i++) center.add(geometries[i].center());
center.div(geometries.length);
pos(center);
attach(center, geometries);
}
if(point!=null){ point.hide(); } // hide point!
}
// out of attached geometries
public IParticle(IVecI geometryOrigin, IGeometry... geometries){
this();
pos(geometryOrigin);
attach(geometryOrigin, geometries);
if(point!=null){ point.hide(); } // hide point!
}
public IParticle(IVecI geometryOrigin, IVecI geometryOrientation, IGeometry... geometries){
this();
pos(geometryOrigin);
attach(geometryOrigin, geometryOrientation, geometries);
if(point!=null){ point.hide(); } // hide point!
}
public void initParticleAgent(){
particle = new IParticleGeo(pos, (IObject)this);
vel = particle.vel;
frc = particle.frc;
addDynamics(particle);
}
public void initParticleAgent(IParticleGeo ptcl){
particle = ptcl;
pos = particle.pos;
vel = particle.vel;
frc = particle.frc;
addDynamics(particle);
}
public void initParticleAgent(IParticle ptcl){
particle = new IParticleGeo(this.pos, ptcl.vel().dup(), (IObject)this);
pos = particle.pos;
vel = particle.vel;
frc = particle.frc;
addDynamics(particle);
}
public void initParticleAgent(IVecI vel){
particle = new IParticleGeo(pos, vel, this);
this.vel = particle.vel;
frc = particle.frc;
addDynamics(particle);
}
public void initParticleAgent(IParticleGeo ptcl, IVecI vel){
particle = ptcl;
particle.vel(vel);
pos = particle.pos;
this.vel = particle.vel;
frc = particle.frc;
addDynamics(particle);
}
/**************************************
* IParticleI API
**************************************/
synchronized public IParticle fix(){ particle.fix(); return this; }
synchronized public IParticle unfix(){ particle.unfix(); return this; }
/** check if it's fixed */
public boolean fixed(){ return particle.fixed(); }
/** for other agent to control particle */
public IParticle skipUpdateOnce(boolean f){ particle.skipUpdateOnce(f); return this; }
/** for other agent to control particle */
public boolean skipUpdateOnce(){ return particle.skipUpdateOnce; }
synchronized public double mass(){ return particle.mass(); }
synchronized public IParticle mass(double mass){ particle.mass(mass); return this; }
synchronized public IVec position(){ return particle.position(); }
synchronized public IParticle position(IVecI v){ particle.position(v); return this; }
synchronized public IVec pos(){ return particle.pos(); }
synchronized public IParticle pos(IVecI v){ particle.pos(v); return this; }
synchronized public IVec velocity(){ return particle.velocity(); }
synchronized public IParticle velocity(IVecI v){ particle.velocity(v); return this; }
synchronized public IVec vel(){ return particle.vel(); }
synchronized public IParticle vel(IVecI v){ particle.vel(v); return this; }
synchronized public IVec acceleration(){ return particle.acceleration(); }
//synchronized public IParticle acceleration(IVec v){ particle.acceleration(v); return this; }
synchronized public IVec acc(){ return particle.acc(); }
//synchronized public IParticle acc(IVec v){ particle.acc(v); return this; }
synchronized public IVec force(){ return particle.force(); }
synchronized public IParticle force(IVecI v){ particle.force(v); return this; }
synchronized public IVec frc(){ return particle.frc(); }
synchronized public IParticle frc(IVecI v){ particle.frc(v); return this; }
synchronized public double friction(){ return particle.friction(); }
synchronized public IParticle friction(double friction){ particle.friction(friction); return this; }
synchronized public double fric(){ return particle.fric(); }
synchronized public IParticle fric(double friction){ particle.fric(friction); return this; }
/* alias of friction */
synchronized public double decay(){ return fric(); }
/* alias of friction */
synchronized public IParticle decay(double d){ return fric(d); }
synchronized public IParticle push(IVecI f){ particle.push(f); return this; }
synchronized public IParticle push(double fx, double fy, double fz){ particle.push(fx,fy,fz); return this; }
synchronized public IParticle pull(IVecI f){ particle.pull(f); return this; }
synchronized public IParticle pull(double fx, double fy, double fz){ particle.pull(fx,fy,fz); return this; }
synchronized public IParticle addForce(IVecI f){ particle.addForce(f); return this; }
synchronized public IParticle addForce(double fx, double fy, double fz){ particle.addForce(fx,fy,fz); return this; }
synchronized public IParticle reset(){ particle.reset(); return this; }
synchronized public IParticle resetForce(){ particle.resetForce(); return this; }
/*********************************************
* geometry object attachment to track agent
********************************************/
/** attach geometry object to agent to track its location.
@param geometries one or more geometry objects. object's center is moved to the agent's location. */
public IParticle attach(IGeometry... geometries){ super.attach(geometries); return this; }
/** attach geometry object to agent to track its location.
@param geometryOrigin origin of geometry object which is moved to the agent's location.
@param geometries one or more geometry objects.
*/
public IParticle attach(IVecI geometryOrigin, IGeometry... geometries){
super.attach(geometryOrigin,geometries); return this;
}
/** attach geometry object to agent to track its location.
@param geometryOrigin origin of geometry object which is moved to the agent's location.
@param geometryOrientation original orientation of geometry which is matched with particle's velocity direction; if its's null, orientatin matching is disabled.
@param geometries one or more geometry objects.
*/
public IParticle attach(IVecI geometryOrigin, IVecI geometryOrientation, IGeometry... geometries){
if(tracker!=null) tracker.del(); // replace
tracker = new IAgentTracker(this,geometryOrigin,geometryOrientation,geometries);
return this;
}
/**************************************
* methods of IVecI
*************************************/
public IParticle x(double vx){ pos.x(vx); return this; }
public IParticle y(double vy){ pos.y(vy); return this; }
public IParticle z(double vz){ pos.z(vz); return this; }
public IParticle x(IDoubleI vx){ pos.x(vx); return this; }
public IParticle y(IDoubleI vy){ pos.y(vy); return this; }
public IParticle z(IDoubleI vz){ pos.z(vz); return this; }
/** setting x component by x component of input vector*/
public IParticle x(IVecI v){ pos.x(v); return this; }
/** setting y component by y component of input vector*/
public IParticle y(IVecI v){ pos.y(v); return this; }
/** setting z component by z component of input vector*/
public IParticle z(IVecI v){ pos.z(v); return this; }
/** setting x component by x component of input vector*/
public IParticle x(IVec2I v){ pos.x(v); return this; }
/** setting y component by y component of input vector*/
public IParticle y(IVec2I v){ pos.y(v); return this; }
public IParticle dup(){ return new IParticle(this); }
public IParticle set(IVecI v){ pos.set(v); return this; }
public IParticle set(double x, double y, double z){ pos.set(x,y,z); return this;}
public IParticle set(IDoubleI x, IDoubleI y, IDoubleI z){ pos.set(x,y,z); return this; }
public IParticle add(double x, double y, double z){ pos.add(x,y,z); return this; }
public IParticle add(IDoubleI x, IDoubleI y, IDoubleI z){ pos.add(x,y,z); return this; }
public IParticle add(IVecI v){ pos.add(v); return this; }
public IParticle sub(double x, double y, double z){ pos.sub(x,y,z); return this; }
public IParticle sub(IDoubleI x, IDoubleI y, IDoubleI z){ pos.sub(x,y,z); return this; }
public IParticle sub(IVecI v){ pos.sub(v); return this; }
public IParticle mul(IDoubleI v){ pos.mul(v); return this; }
public IParticle mul(double v){ pos.mul(v); return this; }
public IParticle div(IDoubleI v){ pos.div(v); return this; }
public IParticle div(double v){ pos.div(v); return this; }
public IParticle neg(){ pos.neg(); return this; }
public IParticle rev(){ return neg(); }
public IParticle flip(){ return neg(); }
public IParticle zero(){ pos.zero(); return this; }
public IParticle add(IVecI v, double f){ pos.add(v,f); return this; }
public IParticle add(IVecI v, IDoubleI f){ pos.add(v,f); return this; }
public IParticle add(double f, IVecI v){ return add(v,f); }
public IParticle add(IDoubleI f, IVecI v){ return add(v,f); }
public IParticle len(IDoubleI l){ pos.len(l); return this; }
public IParticle len(double l){ pos.len(l); return this; }
public IParticle unit(){ pos.unit(); return this; }
public IParticle rot(IDoubleI angle){ pos.rot(angle); return this; }
public IParticle rot(double angle){ pos.rot(angle); return this; }
public IParticle rot(IVecI axis, IDoubleI angle){ pos.rot(axis,angle); return this; }
public IParticle rot(IVecI axis, double angle){ pos.rot(axis,angle); return this; }
public IParticle rot(double axisX, double axisY, double axisZ, double angle){
pos.rot(axisX,axisY,axisZ,angle); return this;
}
public IParticle rot(IVecI center, IVecI axis, double angle){
pos.rot(center, axis,angle); return this;
}
public IParticle rot(IVecI center, IVecI axis, IDoubleI angle){
pos.rot(center, axis,angle); return this;
}
public IParticle rot(double centerX, double centerY, double centerZ,
double axisX, double axisY, double axisZ, double angle){
pos.rot(centerX,centerY,centerZ,axisX,axisY,axisZ,angle); return this;
}
public IParticle rot(IVecI axis, IVecI destDir){ pos.rot(axis,destDir); return this; }
public IParticle rot(IVecI center, IVecI axis, IVecI destPt){
pos.rot(center,axis,destPt); return this;
}
public IParticle rot2(IDoubleI angle){ return rot(angle); }
public IParticle rot2(double angle){ return rot(angle); }
public IParticle rot2(IVecI center, double angle){ pos.rot2(center,angle); return this; }
public IParticle rot2(IVecI center, IDoubleI angle){ pos.rot2(center,angle); return this; }
public IParticle rot2(double centerX, double centerY, double angle){
pos.rot2(centerX,centerY,angle); return this;
}
public IParticle rot2(IVecI destDir){ pos.rot2(destDir); return this; }
public IParticle rot2(IVecI center, IVecI destPt){ pos.rot2(center,destPt); return this; }
public IParticle scale(IDoubleI f){ pos.scale(f); return this; }
public IParticle scale(double f){ pos.scale(f); return this; }
public IParticle scale(IVecI center, IDoubleI f){ pos.scale(center,f); return this; }
public IParticle scale(IVecI center, double f){ pos.scale(center,f); return this; }
public IParticle scale(double centerX, double centerY, double centerZ, double f){
pos.scale(centerX,centerY,centerZ,f); return this;
}
/** scale only in 1 direction */
public IParticle scale1d(IVecI axis, double f){ pos.scale1d(axis,f); return this; }
public IParticle scale1d(IVecI axis, IDoubleI f){ pos.scale1d(axis,f); return this; }
public IParticle scale1d(double axisX, double axisY, double axisZ, double f){
pos.scale1d(axisX,axisY,axisZ,f); return this;
}
public IParticle scale1d(IVecI center, IVecI axis, double f){
pos.scale1d(center,axis,f); return this;
}
public IParticle scale1d(IVecI center, IVecI axis, IDoubleI f){
pos.scale1d(center,axis,f); return this;
}
public IParticle scale1d(double centerX, double centerY, double centerZ,
double axisX, double axisY, double axisZ, double f){
pos.scale1d(centerX,centerY,centerZ,axisX,axisY,axisZ,f); return this;
}
public IParticle ref(IVecI planeDir){ pos.ref(planeDir); return this; }
public IParticle ref(double planeX, double planeY, double planeZ){
pos.ref(planeX,planeY,planeZ); return this;
}
public IParticle ref(IVecI center, IVecI planeDir){
pos.ref(center,planeDir); return this;
}
public IParticle ref(double centerX, double centerY, double centerZ,
double planeX, double planeY, double planeZ){
pos.ref(centerX,centerY,centerZ,planeX,planeY,planeZ); return this;
}
public IParticle mirror(IVecI planeDir){ pos.ref(planeDir); return this; }
public IParticle mirror(double planeX, double planeY, double planeZ){
pos.ref(planeX, planeY, planeZ); return this;
}
public IParticle mirror(IVecI center, IVecI planeDir){
pos.ref(center,planeDir); return this;
}
public IParticle mirror(double centerX, double centerY, double centerZ,
double planeX, double planeY, double planeZ){
pos.ref(centerX,centerY,centerZ,planeX,planeY,planeZ); return this;
}
public IParticle shear(double sxy, double syx, double syz,
double szy, double szx, double sxz){
pos.shear(sxy,syx,syz,szy,szx,sxz); return this;
}
public IParticle shear(IDoubleI sxy, IDoubleI syx, IDoubleI syz,
IDoubleI szy, IDoubleI szx, IDoubleI sxz){
pos.shear(sxy,syx,syz,szy,szx,sxz); return this;
}
public IParticle shear(IVecI center, double sxy, double syx, double syz,
double szy, double szx, double sxz){
pos.shear(center,sxy,syx,syz,szy,szx,sxz); return this;
}
public IParticle shear(IVecI center, IDoubleI sxy, IDoubleI syx, IDoubleI syz,
IDoubleI szy, IDoubleI szx, IDoubleI sxz){
pos.shear(center,sxy,syx,syz,szy,szx,sxz); return this;
}
public IParticle shearXY(double sxy, double syx){ pos.shearXY(sxy,syx); return this; }
public IParticle shearXY(IDoubleI sxy, IDoubleI syx){ pos.shearXY(sxy,syx); return this; }
public IParticle shearXY(IVecI center, double sxy, double syx){
pos.shearXY(center,sxy,syx); return this;
}
public IParticle shearXY(IVecI center, IDoubleI sxy, IDoubleI syx){
pos.shearXY(center,sxy,syx); return this;
}
public IParticle shearYZ(double syz, double szy){ pos.shearYZ(syz,szy); return this; }
public IParticle shearYZ(IDoubleI syz, IDoubleI szy){ pos.shearYZ(syz,szy); return this; }
public IParticle shearYZ(IVecI center, double syz, double szy){
pos.shearYZ(center,syz,szy); return this;
}
public IParticle shearYZ(IVecI center, IDoubleI syz, IDoubleI szy){
pos.shearYZ(center,syz,szy); return this;
}
public IParticle shearZX(double szx, double sxz){ pos.shearZX(szx,sxz); return this; }
public IParticle shearZX(IDoubleI szx, IDoubleI sxz){ pos.shearZX(szx,sxz); return this; }
public IParticle shearZX(IVecI center, double szx, double sxz){
pos.shearZX(center,szx,sxz); return this;
}
public IParticle shearZX(IVecI center, IDoubleI szx, IDoubleI sxz){
pos.shearZX(center,szx,sxz); return this;
}
public IParticle translate(double x, double y, double z){ pos.translate(x,y,z); return this; }
public IParticle translate(IDoubleI x, IDoubleI y, IDoubleI z){ pos.translate(x,y,z); return this; }
public IParticle translate(IVecI v){ pos.translate(v); return this; }
public IParticle transform(IMatrix3I mat){ pos.transform(mat); return this; }
public IParticle transform(IMatrix4I mat){ pos.transform(mat); return this; }
public IParticle transform(IVecI xvec, IVecI yvec, IVecI zvec){
pos.transform(xvec,yvec,zvec); return this;
}
public IParticle transform(IVecI xvec, IVecI yvec, IVecI zvec, IVecI translate){
pos.transform(xvec,yvec,zvec,translate); return this;
}
public IParticle mv(double x, double y, double z){ return add(x,y,z); }
public IParticle mv(IDoubleI x, IDoubleI y, IDoubleI z){ return add(x,y,z); }
public IParticle mv(IVecI v){ return add(v); }
public IParticle cp(){ return dup(); }
public IParticle cp(double x, double y, double z){ return dup().add(x,y,z); }
public IParticle cp(IDoubleI x, IDoubleI y, IDoubleI z){ return dup().add(x,y,z); }
public IParticle cp(IVecI v){ return dup().add(v); }
/**************************************
* methods of IPoint
*************************************/
public IParticle setSize(double sz){ return size(sz); }
public IParticle size(double sz){ point.size(sz); return this; }
/**************************************
* methods of IObject
*************************************/
public IParticle name(String nm){ super.name(nm); return this; }
public IParticle layer(ILayer l){ super.layer(l); return this; }
public IParticle show(){ super.show(); return this; }
public IParticle hide(){ super.hide(); return this; }
public IParticle showPoint(){ super.showPoint(); return this; }
public IParticle hidePoint(){ super.hidePoint(); return this; }
public IParticle showGeometry(){ super.showGeometry(); return this; }
public IParticle hideGeometry(){ super.hideGeometry(); return this; }
public IParticle clr(IColor c){ super.clr(c); return this; }
public IParticle clr(IColor c, int alpha){ super.clr(c,alpha); return this; }
public IParticle clr(IColor c, float alpha){ super.clr(c,alpha); return this; }
public IParticle clr(IColor c, double alpha){ super.clr(c,alpha); return this; }
public IParticle clr(IObject o){ super.clr(o); return this; }
//public IParticle clr(Color c){ super.clr(c); return this; }
//public IParticle clr(Color c, int alpha){ super.clr(c,alpha); return this; }
//public IParticle clr(Color c, float alpha){ super.clr(c,alpha); return this; }
//public IParticle clr(Color c, double alpha){ super.clr(c,alpha); return this; }
public IParticle clr(int gray){ super.clr(gray); return this; }
public IParticle clr(float fgray){ super.clr(fgray); return this; }
public IParticle clr(double dgray){ super.clr(dgray); return this; }
public IParticle clr(int gray, int alpha){ super.clr(gray,alpha); return this; }
public IParticle clr(float fgray, float falpha){ super.clr(fgray,falpha); return this; }
public IParticle clr(double dgray, double dalpha){ super.clr(dgray,dalpha); return this; }
public IParticle clr(int r, int g, int b){ super.clr(r,g,b); return this; }
public IParticle clr(float fr, float fg, float fb){ super.clr(fr,fg,fb); return this; }
public IParticle clr(double dr, double dg, double db){ super.clr(dr,dg,db); return this; }
public IParticle clr(int r, int g, int b, int a){ super.clr(r,g,b,a); return this; }
public IParticle clr(float fr, float fg, float fb, float fa){ super.clr(fr,fg,fb,fa); return this; }
public IParticle clr(double dr, double dg, double db, double da){ super.clr(dr,dg,db,da); return this; }
public IParticle hsb(float h, float s, float b, float a){ super.hsb(h,s,b,a); return this; }
public IParticle hsb(double h, double s, double b, double a){ super.hsb(h,s,b,a); return this; }
public IParticle hsb(float h, float s, float b){ super.hsb(h,s,b); return this; }
public IParticle hsb(double h, double s, double b){ super.hsb(h,s,b); return this; }
public IParticle setColor(IColor c){ super.setColor(c); return this; }
public IParticle setColor(IColor c, int alpha){ super.setColor(c,alpha); return this; }
public IParticle setColor(IColor c, float alpha){ super.setColor(c,alpha); return this; }
public IParticle setColor(IColor c, double alpha){ super.setColor(c,alpha); return this; }
//public IParticle setColor(Color c){ super.setColor(c); return this; }
//public IParticle setColor(Color c, int alpha){ super.setColor(c,alpha); return this; }
//public IParticle setColor(Color c, float alpha){ super.setColor(c,alpha); return this; }
//public IParticle setColor(Color c, double alpha){ super.setColor(c,alpha); return this; }
public IParticle setColor(int gray){ super.setColor(gray); return this; }
public IParticle setColor(float fgray){ super.setColor(fgray); return this; }
public IParticle setColor(double dgray){ super.setColor(dgray); return this; }
public IParticle setColor(int gray, int alpha){ super.setColor(gray,alpha); return this; }
public IParticle setColor(float fgray, float falpha){ super.setColor(fgray,falpha); return this; }
public IParticle setColor(double dgray, double dalpha){ super.setColor(dgray,dalpha); return this; }
public IParticle setColor(int r, int g, int b){ super.setColor(r,g,b); return this; }
public IParticle setColor(float fr, float fg, float fb){ super.setColor(fr,fg,fb); return this; }
public IParticle setColor(double dr, double dg, double db){ super.setColor(dr,dg,db); return this; }
public IParticle setColor(int r, int g, int b, int a){ super.setColor(r,g,b,a); return this; }
public IParticle setColor(float fr, float fg, float fb, float fa){ super.setColor(fr,fg,fb,fa); return this; }
public IParticle setColor(double dr, double dg, double db, double da){ super.setColor(dr,dg,db,da); return this; }
public IParticle setHSBColor(float h, float s, float b, float a){ super.setHSBColor(h,s,b,a); return this; }
public IParticle setHSBColor(double h, double s, double b, double a){ super.setHSBColor(h,s,b,a); return this; }
public IParticle setHSBColor(float h, float s, float b){ super.setHSBColor(h,s,b); return this; }
public IParticle setHSBColor(double h, double s, double b){ super.setHSBColor(h,s,b); return this; }
public IParticle weight(double w){ super.weight(w); return this; }
public IParticle weight(float w){ super.weight(w); return this; }
// partial methods of IDynamics
/** add terget object to be updated by this dynamic object. */
public IParticle target(IObject targetObj){ super.target(targetObj); return this; }
/** remove target object. */
public IParticle removeTarget(int i){ super.removeTarget(i); return this; }
/** remove target object. */
public IParticle removeTarget(IObject obj){ super.removeTarget(obj); return this; }
}