StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
545 B
21 lines
545 B
4 years ago
|
module.exports = random;
|
||
|
|
||
|
/**
|
||
|
* Generates a random vector with the given scale
|
||
|
*
|
||
|
* @param {vec3} out the receiving vector
|
||
|
* @param {Number} [scale] Length of the resulting vector. If ommitted, a unit vector will be returned
|
||
|
* @returns {vec3} out
|
||
|
*/
|
||
|
function random(out, scale) {
|
||
|
scale = scale || 1.0
|
||
|
|
||
|
var r = Math.random() * 2.0 * Math.PI
|
||
|
var z = (Math.random() * 2.0) - 1.0
|
||
|
var zScale = Math.sqrt(1.0-z*z) * scale
|
||
|
|
||
|
out[0] = Math.cos(r) * zScale
|
||
|
out[1] = Math.sin(r) * zScale
|
||
|
out[2] = z * scale
|
||
|
return out
|
||
|
}
|