Const
Next IEEE floating point value of PI, 3.1415926535897936
constants
Previous IEEE floating point value of PI (equal to Math.PI) 3.141592653589793
constants
An interval that represents PI, NOTE: calls to Interval.PI always return a new interval representing PI
constants
Interval.E
E
An interval that represents no values NOTE: calls to Interval.EMPTY always return a new interval representing no values
constants
// Interval.EMPTY is equivalent to
Interval().setEmpty()
EMPTY
An interval that represents 1, NOTE: calls to Interval.ONE always return a new interval representing 1
constants
// Interval.ONE is equivalent to
Interval(1)
ONE
An interval that represents Euler's constant e, NOTE: calls to Interval.E always return a new interval representing PI
constants
Interval(Interval.PI_LOW, Interval.PI_HIGH)
PI
An interval that represents PI / 2
, NOTE: calls to Interval.PI_HALF
always
return a new interval representing PI / 2
constants
Interval(Interval.PI_LOW / 2, Interval.PI_HIGH / 2)
PI_HALF
An interval that represents PI * 2
NOTE: calls to Interval.PI_TWICE
always
return a new interval representing PI * 2
constants
Interval(Interval.PI_LOW * 2, Interval.PI_HIGH * 2)
PI_TWICE
An interval that represents all the real values NOTE: calls to Interval.WHOLE always return a new interval representing all the real values
constants
// Interval.WHOLE is equivalent to
Interval().setWhole()
WHOLE
An interval that represents 0, NOTE: calls to Interval.ZERO
always return a new interval representing 0
constants
// Interval.ZERO is equivalent to
Interval(0)
ZERO
Generated using TypeDoc
Mixin
constants