public static IFloat Create(Xfloat FloatValue)
    {
        IFloat iFloat;

        iFloat.Value = FloatValue.GetCompareValue();
        return(iFloat);
    }
Esempio n. 2
0
    public void Set(Xfloat v)
    {
        _zl  = Dkaghghk.fdsfas;
        _zl2 = Dkaghghk.dsfafasfassfd;;

        _value  = v.GetCompareValue() + _zl;
        _eValue = _value + _zl2;
    }
Esempio n. 3
0
 public static bool lessThan(Xfloat a, float b)
 {
     return(a.GetCompareValue() < (long)Math.Round(b * FACTOR));
 }
Esempio n. 4
0
 public static bool lessThan(float a, Xfloat b)
 {
     return((long)Math.Round(a * FACTOR) < b.GetCompareValue());
 }
Esempio n. 5
0
 public static bool lessThan(IFloat a, Xfloat b)
 {
     return(a.Value < b.GetCompareValue());
 }
Esempio n. 6
0
 public static bool lessThan(Xfloat a, IFloat b)
 {
     return(a.GetCompareValue() < b.Value);
 }
Esempio n. 7
0
 public static bool greaterThan(Xfloat a, float b)
 {
     return(a.GetCompareValue() > (long)Math.Round(b * FACTOR));
 }
Esempio n. 8
0
 public static bool greaterThan(float a, Xfloat b)
 {
     return((long)Math.Round(a * FACTOR) > b.GetCompareValue());
 }
Esempio n. 9
0
 public static bool greaterThan(IFloat a, Xfloat b)
 {
     return(a.Value > b.GetCompareValue());
 }
Esempio n. 10
0
 public static bool greaterThan(Xfloat a, IFloat b)
 {
     return(a.GetCompareValue() > b.Value);
 }
Esempio n. 11
0
 public void Set(Xfloat xFloatValue)
 {
     Value = xFloatValue.GetCompareValue();
 }
Esempio n. 12
0
 public IFloat(Xfloat xFloatValue)
 {
     Value = xFloatValue.GetCompareValue();
 }