예제 #1
0
 public synchronized boolean fixed() {
   return particle.fixed();
 }
예제 #2
0
 public synchronized double ufrc() {
   return particle.ufrc();
 }
예제 #3
0
 public synchronized IParticleOnCurve upull(double uforce) {
   particle.upull(uforce);
   return this;
 }
예제 #4
0
 public synchronized double upos() {
   return particle.upos();
 }
예제 #5
0
 public synchronized double uvel() {
   return particle.uvel();
 }
예제 #6
0
 public synchronized IParticleOnCurve addForce(double fx, double fy, double fz) {
   particle.addForce(fx, fy, fz);
   return this;
 }
예제 #7
0
 // synchronized public ICurveI curve(){ return particle.curve(); }
 public synchronized ICurveI railCurve() {
   return particle.curve();
 }
예제 #8
0
 public synchronized IParticleOnCurve vel(IVecI v) {
   particle.vel(v);
   return this;
 }
예제 #9
0
 public synchronized IVec acceleration() {
   return particle.acceleration();
 }
예제 #10
0
 public synchronized IParticleOnCurve pos(IVecI v) {
   particle.pos(v);
   return this;
 }
예제 #11
0
 public synchronized IVec vel() {
   return particle.vel();
 }
예제 #12
0
 public synchronized IVec pos() {
   return particle.pos();
 }
예제 #13
0
 public synchronized IParticleOnCurve mass(double mass) {
   particle.mass(mass);
   return this;
 }
예제 #14
0
 public synchronized double mass() {
   return particle.mass();
 }
예제 #15
0
 public synchronized IParticleOnCurve pull(double fx, double fy, double fz) {
   particle.pull(fx, fy, fz);
   return this;
 }
예제 #16
0
 // synchronized public IParticleOnCurve acceleration(IVec v){ particle.acceleration(v); return
 // this; }
 public synchronized IVec acc() {
   return particle.acc();
 }
예제 #17
0
 public synchronized IParticleOnCurve addForce(IVecI f) {
   particle.addForce(f);
   return this;
 }
예제 #18
0
 public synchronized IVec force() {
   return particle.force();
 }
예제 #19
0
 public synchronized IParticleOnCurve resetForce() {
   particle.resetForce();
   return this;
 }
예제 #20
0
 public synchronized IVec frc() {
   return particle.frc();
 }
예제 #21
0
 public synchronized IParticleOnCurve upos(double u) {
   particle.upos(u);
   return this;
 }
예제 #22
0
 public synchronized IParticleOnCurve frc(IVecI v) {
   particle.frc(v);
   return this;
 }
예제 #23
0
 public synchronized IParticleOnCurve uvel(double uv) {
   particle.uvel(uv);
   return this;
 }
예제 #24
0
 public synchronized double fric() {
   return particle.fric();
 }
예제 #25
0
 public synchronized IParticleOnCurve ufrc(double uf) {
   particle.ufrc(uf);
   return this;
 }
예제 #26
0
 public synchronized IParticleOnCurve fric(double friction) {
   particle.fric(friction);
   return this;
 }
예제 #27
0
 public synchronized IParticleOnCurve addUForce(double uforce) {
   particle.upush(uforce);
   return this;
 }
예제 #28
0
 public synchronized IParticleOnCurve pull(IVecI f) {
   particle.pull(f);
   return this;
 }
예제 #29
0
 public synchronized IParticleOnCurve ureset() {
   particle.ureset();
   return this;
 }
예제 #30
0
 public boolean skipUpdateOnce() {
   return particle.skipUpdateOnce();
 }