static Real |
Real.add(double a,
double b) |
Returns the result of a + b, without loss of precision.
|
Real |
Real.add(Real that) |
Returns the result of a + b, without loss of precision.
|
private static Real |
Real.add(Real a,
Real b,
boolean negateB) |
Returns the result of adding together the components of a and b, inverting each element of b if
negateB is true.
|
Real |
Real.mul(double scale) |
Returns the result of this * scale, without loss of precision.
|
static Real |
Real.mul(double a,
double b) |
Returns the result of a * b, without loss of precision.
|
Real |
Real.negate() |
Returns the negative of this number.
|
static Real |
Real.sub(double a,
double b) |
Returns the result of a - b, without loss of precision.
|
Real |
Real.sub(Real that) |
Returns the result of a - b, without loss of precision.
|