Ejemplo n.º 1
0
 public bool Equals(EngValue other)
 {
     return(Equals(other.Value));
 }
Ejemplo n.º 2
0
 public bool Equals(EngValue other, double relative_tolerance)
 {
     return(Equals(other.Value, relative_tolerance));
 }
Ejemplo n.º 3
0
 public EngValue Subtract(EngValue other)
 {
     return(new EngValue(Value - other.Value));
 }
Ejemplo n.º 4
0
 public EngValue Add(EngValue other)
 {
     return(new EngValue(Value + other.Value));
 }
Ejemplo n.º 5
0
 public EngValue Divide(EngValue other)
 {
     return(new EngValue(Value / other.Value));
 }
Ejemplo n.º 6
0
 public EngValue Multiply(EngValue other)
 {
     return(new EngValue(Value * other.Value));
 }
Ejemplo n.º 7
0
 public EngValue(EngValue other)
 {
     this.Sign     = other.Sign;
     this.Scalar   = other.Scalar;
     this.Exponent = other.Exponent;
 }