This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define SELF iChannel0 | |
| void mainImage(out vec4 fragColor, in vec2 fragCoord) | |
| { | |
| if (iFrame < 3) { | |
| ivec2 seed = ivec2(fragCoord.xy); | |
| vec3 ro_sample; | |
| vec3 rd_sample; | |
| random_sample_ray(seed, ro_sample, rd_sample); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Interpolation using Radial Basis Functions | |
| Author: Karl-Étienne Bolduc | |
| Date: 2024-05-06 | |
| License: MIT | |
| ''' | |
| import jax | |
| import jax.numpy as jnp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Directory Structure | |
| ####### | |
| # build/ | |
| # ... | |
| # extern/ | |
| # glad/ | |
| # ... | |
| # imgui/ | |
| # ... | |
| # src/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const _ = require('lodash'); | |
| const $ = require('jquery'); | |
| const Vue = require('vue'); | |
| require('jquery.magnific-popup'); | |
| module.exports = Vue.extend({ | |
| template: require('./tpl.html'), | |
| props: { | |
| show: { | |
| type: Boolean, |