Abacus
|
Provides maths functions with consistent function signatures across supported precisions. More...
Static Public Member Functions | |
static Fixed64 | Sqrt (Fixed64 v) |
static Fixed64 | Abs (Fixed64 v) |
static Fixed64 | Sin (Fixed64 v) |
static Fixed64 | Cos (Fixed64 v) |
static Fixed64 | Tan (Fixed64 v) |
static Fixed64 | ArcCos (Fixed64 v) |
static Fixed64 | ArcSin (Fixed64 v) |
static Fixed64 | ArcTan (Fixed64 v) |
static Fixed64 | ArcTan2 (Fixed64 y, Fixed64 x) |
static Fixed64 | ToRadians (Fixed64 input) |
static Fixed64 | ToDegrees (Fixed64 input) |
static Fixed64 | FromFraction (Int32 numerator, Int32 denominator) |
static Fixed64 | FromFraction (Int64 numerator, Int64 denominator) |
static Fixed64 | Min (Fixed64 a, Fixed64 b) |
static Fixed64 | Max (Fixed64 a, Fixed64 b) |
static Fixed64 | Clamp (Fixed64 value, Fixed64 min, Fixed64 max) |
static Fixed64 | Lerp (Fixed64 a, Fixed64 b, Fixed64 t) |
static Fixed64 | FromString (String str) |
static void | FromString (String str, out Fixed64 value) |
static Boolean | IsApproximatelyZero (Fixed64 value) |
static Boolean | ApproximateEquals (Fixed64 a, Fixed64 b) |
static Int32 | Sign (Fixed64 value) |
static Fixed64 | CopySign (Fixed64 x, Fixed64 y) |
Static Public Attributes | |
static readonly Fixed64 | Epsilon = (Fixed64) 0.000001 |
static readonly Fixed64 | E = Fixed64.CreateFrom (2.71828182845904523536028747135) |
static readonly Fixed64 | Half = Fixed64.CreateFrom (0.5) |
static readonly Fixed64 | Quarter = Fixed64.CreateFrom (0.25) |
static readonly Fixed64 | Log10E = Fixed64.CreateFrom (0.43429448190325182765112891892) |
static readonly Fixed64 | Log2E = Fixed64.CreateFrom (1.44269504088896340735992468100) |
static readonly Fixed64 | Pi = Fixed64.CreateFrom (3.14159265358979323846264338328) |
static readonly Fixed64 | HalfPi = Fixed64.CreateFrom (1.57079632679489661923132169164) |
static readonly Fixed64 | QuarterPi = Fixed64.CreateFrom (0.78539816339744830961566084582) |
static readonly Fixed64 | Root2 = Fixed64.CreateFrom (1.41421356237309504880168872421) |
static readonly Fixed64 | Root3 = Fixed64.CreateFrom (1.73205080756887729352744634151) |
static readonly Fixed64 | Tau = Fixed64.CreateFrom (6.28318530717958647692528676656) |
static readonly Fixed64 | Deg2Rad = Fixed64.CreateFrom (0.01745329251994329576923690768) |
static readonly Fixed64 | Rad2Deg = Fixed64.CreateFrom (57.29577951308232087679815481409) |
static readonly Fixed64 | Zero = Fixed64.CreateFrom (0.0) |
static readonly Fixed64 | One = Fixed64.CreateFrom (1.0) |
Provides maths functions with consistent function signatures across supported precisions.