You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
565 B
JavaScript
26 lines
565 B
JavaScript
import defaultValue from "./defaultValue.js";
|
|
|
|
/**
|
|
* Represents the closed interval [start, stop].
|
|
* @alias Interval
|
|
* @constructor
|
|
*
|
|
* @param {Number} [start=0.0] The beginning of the interval.
|
|
* @param {Number} [stop=0.0] The end of the interval.
|
|
*/
|
|
function Interval(start, stop) {
|
|
/**
|
|
* The beginning of the interval.
|
|
* @type {Number}
|
|
* @default 0.0
|
|
*/
|
|
this.start = defaultValue(start, 0.0);
|
|
/**
|
|
* The end of the interval.
|
|
* @type {Number}
|
|
* @default 0.0
|
|
*/
|
|
this.stop = defaultValue(stop, 0.0);
|
|
}
|
|
export default Interval;
|