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.
|
4 years ago | |
---|---|---|
.. | ||
1.0 | 4 years ago | |
LICENSE.md | 4 years ago | |
README.md | 4 years ago | |
lookup.js | 4 years ago | |
package.json | 4 years ago |
README.md
gl-constants
All the WebGL 1.0 constants as a module. Useful for testing.
var constants = require('gl-constants')
texture.minFilter = constants.LINEAR
texture.magFilter = constants.NEAREST
You can also 'lookup' a constant by number:
var lookup = require('gl-constants/lookup')
console.log(lookup(1282)) // INVALID_OPERATION
Note that some fields share the same number, like NONE
, ZERO
POINTS
and NO_ERROR
all use 0.
Usage
require('gl-constants')
An object where each key corresponds to the WebGL constant integer value.
require('gl-constants/lookup')(number)
Returns the key name associated with the given WebGL constant integer value.
License
MIT, see LICENSE.md for details.