Uses of Class
com.google.common.geometry.Real

  • Uses of Real in com.google.common.geometry

    Methods in com.google.common.geometry that return Real
    Modifier and Type
    Method
    Description
    static Real
    Real.add(double a, double b)
    Returns the result of a + b, without loss of precision.
    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.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.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.sub(Real that)
    Returns the result of a - b, without loss of precision.
    Methods in com.google.common.geometry with parameters of type Real
    Modifier and Type
    Method
    Description
    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.sub(Real that)
    Returns the result of a - b, without loss of precision.