Abacus
|
64 bit signed Q40.24 number. More...
Public Member Functions | |
override Boolean | Equals (object obj) |
override Int32 | GetHashCode () |
Boolean | Equals (Fixed64 other) |
Boolean | GreaterThan (Fixed64 other) |
Boolean | GreaterThanOrEqualTo (Fixed64 other) |
Boolean | LessThan (Fixed64 other) |
Boolean | LessThanOrEqualTo (Fixed64 other) |
override String | ToString () |
Int32 | ToInt32 () |
Int64 | ToInt64 () |
Single | ToSingle () |
Double | ToDouble () |
Static Public Member Functions | |
static Fixed64 | CreateRaw (Int64 v) |
static Boolean | IsInfinity (Fixed64 f) |
static Boolean | IsNegativeInfinity (Fixed64 f) |
static Boolean | IsPositiveInfinity (Fixed64 f) |
static Boolean | IsNaN (Fixed64 f) |
static Boolean | IsNegative (Fixed64 f) |
static Boolean | TryParse (string s, out Fixed64 r) |
static void | CreateFrom (Int32 v, out Fixed64 r) |
static void | CreateFrom (Int64 v, out Fixed64 r) |
static void | CreateFrom (Single v, out Fixed64 r) |
static void | CreateFrom (Double v, out Fixed64 r) |
static void | Add (ref Fixed64 a, ref Fixed64 b, out Fixed64 r) |
static void | Subtract (ref Fixed64 a, ref Fixed64 b, out Fixed64 r) |
static void | Multiply (ref Fixed64 a, ref Fixed64 b, out Fixed64 r) |
static void | Divide (ref Fixed64 a, ref Fixed64 b, out Fixed64 r) |
static void | Modulo (ref Fixed64 a, ref Fixed64 b, out Fixed64 r) |
static void | Negate (ref Fixed64 f, out Fixed64 r) |
static void | Sqrt (ref Fixed64 f, out Fixed64 r) |
static void | Abs (ref Fixed64 f, out Fixed64 r) |
static void | Sin (ref Fixed64 f, out Fixed64 r) |
static void | Cos (ref Fixed64 f, out Fixed64 r) |
static void | Tan (ref Fixed64 f, out Fixed64 r) |
static void | ArcSin (ref Fixed64 f, out Fixed64 r) |
static void | ArcCos (ref Fixed64 f, out Fixed64 r) |
static void | ArcTan (ref Fixed64 f, out Fixed64 r) |
static void | ArcTan2 (ref Fixed64 y, ref Fixed64 x, out Fixed64 r) |
static void | Saturate (ref BigInteger big, out Int64 r) |
static void | SinLookup (ref Fixed64 rad, out Fixed64 r) |
static Fixed64 | Add (Fixed64 a, Fixed64 b) |
static Fixed64 | Subtract (Fixed64 a, Fixed64 b) |
static Fixed64 | Multiply (Fixed64 a, Fixed64 b) |
static Fixed64 | Divide (Fixed64 a, Fixed64 b) |
static Fixed64 | Modulo (Fixed64 a, Fixed64 b) |
static Fixed64 | Negate (Fixed64 f) |
static Fixed64 | operator+ (Fixed64 a, Fixed64 b) |
static Fixed64 | operator- (Fixed64 a, Fixed64 b) |
static Fixed64 | operator* (Fixed64 a, Fixed64 b) |
static Fixed64 | operator/ (Fixed64 a, Fixed64 b) |
static Fixed64 | operator% (Fixed64 a, Fixed64 b) |
static Fixed64 | operator- (Fixed64 f) |
static Fixed64 | operator+ (Fixed64 f) |
static Fixed64 | Sqrt (Fixed64 f) |
static Fixed64 | Abs (Fixed64 f) |
static Fixed64 | Sin (Fixed64 f) |
static Fixed64 | Cos (Fixed64 f) |
static Fixed64 | Tan (Fixed64 f) |
static Fixed64 | ArcSin (Fixed64 f) |
static Fixed64 | ArcCos (Fixed64 f) |
static Fixed64 | ArcTan (Fixed64 f) |
static Fixed64 | ArcTan2 (Fixed64 y, Fixed64 x) |
static Boolean | operator== (Fixed64 a, Fixed64 b) |
static Boolean | operator!= (Fixed64 a, Fixed64 b) |
static Boolean | operator>= (Fixed64 a, Fixed64 b) |
static Boolean | operator<= (Fixed64 a, Fixed64 b) |
static Boolean | operator> (Fixed64 a, Fixed64 b) |
static Boolean | operator< (Fixed64 a, Fixed64 b) |
static | operator Int32 (Fixed64 f) |
static | operator Int64 (Fixed64 f) |
static | operator Single (Fixed64 f) |
static | operator Double (Fixed64 f) |
static implicit | operator Fixed64 (Int32 v) |
static implicit | operator Fixed64 (Int64 v) |
static implicit | operator Fixed64 (Single v) |
static implicit | operator Fixed64 (Double v) |
static Fixed64 | CreateFrom (Int32 v) |
static Fixed64 | CreateFrom (Int64 v) |
static Fixed64 | CreateFrom (Single v) |
static Fixed64 | CreateFrom (Double v) |
Public Attributes | |
const Byte | S = 1 |
const Byte | M = 39 |
const Byte | N = 24 |
Int64 | numerator |
const Int64 | denominator = (Int64) 1 << N |
Static Public Attributes | |
static readonly Fixed64 | Epsilon = CreateRaw (10) |
static readonly Fixed64 | Resolution = CreateRaw (1) |
static readonly Fixed64 | MaxValue = CreateRaw (Int64.MaxValue) |
static readonly Fixed64 | MinValue = CreateRaw (Int64.MinValue) |
static readonly Int64 | k = 1 << (N - 1) |
static readonly Double | invdd = 1.0 / (Double) denominator |
static readonly Single | invds = 1.0f / (Single) denominator |
static readonly BigInteger | big_k = (BigInteger) k |
static readonly BigInteger | bigMin = (BigInteger) Int64.MinValue |
static readonly BigInteger | bigMax = (BigInteger) Int64.MaxValue |
static readonly Int64[] | sinLUT |
Properties | |
Int64 | Numerator [get, set] |
Int64 | Denominator [get] |
Int64 | High [get] |
Int64 | Low [get] |
64 bit signed Q40.24 number.
|
static |