/// <summary> /// Transforms x and returns a value based on the given mode /// </summary>. public static double getValue(int mode, double x) { return(Is64 ? WrapperX64.getValue(mode, x) : WrapperX86.getValue(mode, x)); }
/// <summary> /// Returns true if the library is in mode 3 /// </summary> public static bool getMode3() { return(Is64 ? WrapperX64.getMode3() : WrapperX86.getMode3()); }