Public
Edited
Jul 6, 2023
2 forks
6 stars
Insert cell
Insert cell
Insert cell
canvas = html`<canvas width=600 height=400>`
Insert cell
gl = canvas.getContext("webgl")
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
program = {
// create program
let program = gl.createProgram();
// compile vertex shader
let vertexShader = gl.createShader(gl.VERTEX_SHADER);
gl.shaderSource(vertexShader, vertexShaderSrc);
gl.compileShader(vertexShader);
// compile fragment shader
let fragmentShader = gl.createShader(gl.FRAGMENT_SHADER);
gl.shaderSource(fragmentShader, fragmentShaderSrc);
gl.compileShader(fragmentShader);

// link compiled shaders into program
gl.attachShader(program, vertexShader);
gl.attachShader(program, fragmentShader);
gl.linkProgram(program);
return program
}
Insert cell
Insert cell
vertices = new Float32Array([-1, 1, 1, 0, 0, -1])
Insert cell
vertices
Insert cell
vertexBuffer = gl.createBuffer()
Insert cell
loadVertices = {
gl.bindBuffer(gl.ARRAY_BUFFER, vertexBuffer);
gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW);
}
Insert cell
vertexLocation = gl.getAttribLocation(program, 'position')
Insert cell
Insert cell
triangleColor = [1, 0, 0, 1]
Insert cell
colorLocation = gl.getUniformLocation(program, 'color')
Insert cell
Insert cell
drawFrame = {
loadVertices; // Reactive dependency!

gl.clearColor(0.0, 0.0, 0.0, 1.0); // Opaque black
gl.clear(gl.COLOR_BUFFER_BIT);

gl.viewport(0, 0, gl.canvas.width, gl.canvas.height);

gl.useProgram(program);

gl.bindBuffer(gl.ARRAY_BUFFER, vertexBuffer);
gl.vertexAttribPointer(vertexLocation, 2, gl.FLOAT, false, 0, 0);
gl.enableVertexAttribArray(vertexLocation);

gl.uniform4fv(colorLocation, triangleColor);

gl.drawArrays(gl.TRIANGLES, 0, 3);
}
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