Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import Check from "../../../../Core/Check.js";
/**
* @typedef {object} Spdcf.ConstructorOptions
*
* Initialization options for the Spdcf constructor
*
* @property {number} A The factor A, in (0, 1]
* @property {number} alpha The alpha value, in [0, 1)
* @property {number} beta The beta value, in [0, 10]
* @property {number} T the tau value, in (0, +inf)
*/
/**
* Variables for a Strictly Positive-Definite Correlation Function.
*
* This reflects the `spdcf` definition of the
* {@link https://nsgreg.nga.mil/csmwg.jsp|NGA_gpm_local} glTF extension.
* Instances of this type are stored as the parameters within a
* `CorrelationGroup`.
*
* Parameters (A, alpha, beta, T) describe the correlation decrease
* between points as a function of delta time:
* ```
* spdcf(delta_t) = A_t * (alpha_t + ((1 - alpha_t)(1 + beta_t)) / (beta_t + e^(delta_t/T_t)))
* ```
*
* @constructor
* @param {Spdcf.ConstructorOptions} options An object describing initialization options
* @experimental This feature is not final and is subject to change without Cesium's standard deprecation policy.
*/
function Spdcf(options) {
//>>includeStart('debug', pragmas.debug);
Check.typeOf.number.greaterThan("options.A", options.A, 0.0);
Check.typeOf.number.lessThanOrEquals("options.A", options.A, 1.0);
Check.typeOf.number.greaterThanOrEquals("options.alpha", options.alpha, 0.0);
Check.typeOf.number.lessThan("options.alpha", options.alpha, 1.0);
Check.typeOf.number.greaterThanOrEquals("options.beta", options.beta, 0.0);
Check.typeOf.number.lessThanOrEquals("options.beta", options.beta, 10.0);
Check.typeOf.number.greaterThan("options.T", options.T, 0.0);
//>>includeEnd('debug');
this._A = options.A;
this._alpha = options.alpha;
this._beta = options.beta;
this._T = options.T;
}
Object.defineProperties(Spdcf.prototype, {
/**
* In (0, 1]
*
* @memberof Spdcf.prototype
* @type {number}
* @readonly
*/
A: {
get: function () {
return this._A;
},
},
/**
* In [0, 1)
*
* @memberof Spdcf.prototype
* @type {number}
* @readonly
*/
alpha: {
get: function () {
return this._alpha;
},
},
/**
* In [0, 10]
*
* @memberof Spdcf.prototype
* @type {number}
* @readonly
*/
beta: {
get: function () {
return this._beta;
},
},
/**
* In (0, +inf)
*
* @memberof Spdcf.prototype
* @type {number}
* @readonly
*/
T: {
get: function () {
return this._T;
},
},
});
export default Spdcf;
|