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.
18 lines
433 B
18 lines
433 B
4 years ago
|
struct Ray {
|
||
|
vec3 origin;
|
||
|
vec3 direction;
|
||
|
} ray1;
|
||
|
|
||
|
const Ray ray2 = Ray(vec3(0), vec3(0, 1, 0));
|
||
|
const vec2 vec = vec2(0.0);
|
||
|
const float pi = 6.28;
|
||
|
|
||
|
#pragma glslify: n = require('./unsuffixable-child', a = vec.x, b = 5.0, c = vec, e = 2, f = ray1.origin.xy, t = pi, g = ray2.direction)
|
||
|
|
||
|
void runner(in vec2 fragCoord) {
|
||
|
gl_FragColor = vec4(n(fragCoord + vec2(d + h)), 1.0);
|
||
|
}
|
||
|
|
||
|
|
||
|
#pragma glslify: export(runner)
|