Published
Edited
May 3, 2022
1 fork
Insert cell
Insert cell
Insert cell
Insert cell
createRegl = require("regl")
Insert cell
Insert cell
canvas = html`<canvas width=300 height=200>`
Insert cell
Insert cell
regl = createRegl(canvas)
Insert cell
Insert cell
drawTriangle = regl({
// In a draw call, we can pass the shaders source code to regl
frag: `
precision mediump float;
uniform vec4 color;
void main () {
gl_FragColor = color;
}`,

vert: `
attribute vec2 position;
void main () {
gl_Position = vec4(position, 0, 1);
}`,

// These are the vertex attributes that will be passed
// on to the vertex shader
attributes: {
position: [
[-1, 0],
[0, -1],
[1, 1]
]
},

// These are the uniforms, i.e., global shader variables that are set
// from inside the host (CPU) program
uniforms: {
color: [1, 0, 0, 1]
},

// Total number of vertices to be fed into the pipeline
count: 3
})
Insert cell
Insert cell
draw = {
// First clear the frame buffer
regl.clear({
color: [0, 0, 0, 1]
})
// And then draw the triangle
drawTriangle()
}
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more