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
468 B
21 lines
468 B
"use strict"
|
|
|
|
var shell = require("gl-now")({ tickRate: 2, clearColor: [0,0,0,0] })
|
|
var createSelect = require("../select")
|
|
|
|
var select
|
|
|
|
shell.on("gl-init", function() {
|
|
select = createSelect(shell.gl, [shell.width, shell.height])
|
|
})
|
|
|
|
shell.on("gl-render", function() {
|
|
var gl = shell.gl
|
|
select.shape = [shell.width, shell.height]
|
|
select.begin()
|
|
gl.clearColor(0, 0, 0, 0)
|
|
gl.clear(gl.COLOR_BUFFER_BIT)
|
|
select.end()
|
|
|
|
console.log(select.query(0,0,10))
|
|
}) |