Exemplo n.º 1
0
 public XYLinkedTrans(TransAcceleration accel)
 {
     this.accel = accel; this.TimeInOrAboveTrans = 0;
 }
Exemplo n.º 2
0
 public XYLinkedPowerTrans(
     TransAcceleration accel,
     double coeff,
     double exponent,
     double minSpeed,
     double maxSpeed)
     : base(accel)
 {
     this.coeff = coeff;
     this.exponent = exponent;
     this.minSpeed = minSpeed;
     this.maxSpeed = maxSpeed;
 }