Esempio n. 1
0
 public void                         Substract(FloatVar otherVar)
 {
     this.Value -= otherVar;
 }
Esempio n. 2
0
 public void                         Copy(FloatVar otherVar)
 {
     this.Value = otherVar;
 }
Esempio n. 3
0
 public void                         Add(FloatVar otherVar)
 {
     this.Value += otherVar;
 }