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.
17 lines
403 B
17 lines
403 B
4 years ago
|
#pragma glslify: LightStruct = require(./struct)
|
||
|
#pragma glslify: export(another)
|
||
|
|
||
|
float alongside() {
|
||
|
return 0.0;
|
||
|
}
|
||
|
|
||
|
float another(float n) {
|
||
|
LightStruct b = LightStruct(vec3(0), vec4(0));
|
||
|
return n * n + b.position + alongside() + t + u;
|
||
|
}
|
||
|
|
||
|
float another(float n, float c) {
|
||
|
LightStruct b = LightStruct(vec3(0), vec4(0));
|
||
|
return n * n + b.position + another(c) + t + u - v;
|
||
|
}
|