Published
Edited
Aug 15, 2020
3 forks
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
textures = {
return {
grid: await FileAttachment("uv_grid_opengl.jpg").image(),
earth : await FileAttachment("EarthMap.jpg").image(),
chessboard : await FileAttachment("checkerboard.png").image(),
crate : await FileAttachment("crate.gif").image()
}
}
Insert cell
Insert cell
sphereMesh = function (radius, nphi, ntheta) {
let vertices = [];
let faces = [];
let uvs = [];
let normals = [];
let tangents = [];
for (let i = 0; i <= nphi; i++) {
let phi = Math.PI/nphi*i;
for (let j = 0; j <= ntheta; j++) {
let theta = Math.PI*2/ntheta*j;
let normal = [Math.sin(phi)*Math.cos(theta),
Math.sin(phi)*Math.sin(theta),
Math.cos(phi)]
normals.push (normal)
let tangent = [-Math.sin(theta),Math.cos(theta),0];
tangents.push (tangent);
vertices.push (normal.map(x => x*radius));
uvs.push([j/ntheta,1-i/nphi]);
if (i < nphi && j < ntheta) {
faces.push([i*(ntheta+1)+j,
(i+1)*(ntheta+1)+j,
(i+1)*(ntheta+1)+j+1],
[i*(ntheta+1)+j,
(i+1)*(ntheta+1)+j+1,
i*(ntheta+1)+j+1])
}
}
}
return {vertices,faces,uvs,normals,tangents}
}
Insert cell
obj = sphereMesh(1,20,40)
Insert cell
Insert cell
//
// Generates a draw program for drawing the faces of triangle mesh
//
drawProgram = {
return regl({

frag: `
precision mediump float;
uniform vec4 color;
varying vec3 vertex_normal;
varying vec3 vertex_tangent;
varying vec2 vertex_uv;
uniform vec3 light_dir;
uniform sampler2D tex;
uniform bool modulate;
uniform float blend_alpha;
float lum(in vec4 color) {
return 0.299 * color.r + 0.587*color.g + 0.114 * color.b;
}
void main () {
vec3 normal = normalize(vertex_normal);
vec3 tangent = normalize(vertex_tangent);
vec3 bitangent = normalize(cross(normal,tangent));
float ds = lum(texture2D(tex, vertex_uv+vec2(0.001,0.)))-lum(texture2D(tex, vertex_uv-vec2(0.001,0.)));
float dt = lum(texture2D(tex, vertex_uv+vec2(0.,0.001)))-lum(texture2D(tex, vertex_uv-vec2(0.,0.001)));
normal = normalize(normal-ds*tangent-dt*bitangent);
vec4 texColor = texture2D(tex,vertex_uv);
vec4 lightColor = vec4(clamp(color.xyz*dot(normal,light_dir),0.0,1.0),1.0);
if (modulate) gl_FragColor = texColor*lightColor;
else gl_FragColor = texColor*blend_alpha+lightColor*(1.0-blend_alpha);
}`,

vert: `
attribute vec3 position;
attribute vec3 normal;
attribute vec3 tangent;
attribute vec2 uv;
varying vec3 vertex_normal;
varying vec3 vertex_tangent;
varying vec2 vertex_uv;
uniform mat4 modelview;
uniform mat4 projection;
uniform mat3 uvtransform;
void main () {
vec4 worldpos = modelview*vec4(position, 1.0);
vertex_uv = (uvtransform*vec3(uv.xy,1.0)).xy;
gl_Position = projection*worldpos;
vertex_normal = (modelview*vec4(normal,0.0)).xyz;
vertex_tangent = (modelview*vec4(tangent,0.0)).xyz;
}`,

// These are the vertex attributes that will be passed
// on to the vertex shader
attributes: {
position: obj.vertices,
normal: obj.normals,
tangent: obj.tangents,
uv: obj.uvs
},

// These are the uniforms, i.e., global shader variables that are set
// from inside the host (CPU) program
uniforms: {
color: [1, 1, 1, 1],
light_dir : vec3.normalize([], vec3.set ([],1,1,2)),
modelview : regl.prop('modelview'),
projection : regl.prop ('projection'),
uvtransform: regl.prop('uvtransform'),
tex : regl.texture({data : textures[conf.parameters.tex],
wrapS : conf.parameters.wrapS,
wrapT : conf.parameters.wrapT,
min: conf.parameters.min,
max: conf.parameters.max,
mipmap: 'nice',
flipY: true
}),
modulate : regl.prop('modulate'),
blend_alpha : regl.prop ('blend_alpha')
},

// The depth buffer
depth: {
enable: true,
func: '<',
mask: true,
},

// Number of triangles
elements: obj.faces
})
}
Insert cell
Insert cell
mutable view = mat4.lookAt([],[0,0,4],[0,0,0],[0,1,0])
Insert cell
projection = mat4.perspective ([], 40 * Math.PI/180, 1, 0.01, 100)
Insert cell
mutable model = mat4.identity([])
Insert cell
Insert cell
draw = {

regl.clear({
color: [0.8, 0.8, 1.0, 1],
depth: 1
})

let [smin,smax,tmin,tmax] = [conf.ranges.smin,conf.ranges.smax,conf.ranges.tmin,conf.ranges.tmax];
let uvtransform = mat3.mul([], mat3.fromTranslation([], [smin,tmin]),
mat3.fromScaling([],[smax-smin,tmax-tmin]));
let uniforms = {modelview:mat4.mul([],view,model),
projection:projection,
uvtransform,
modulate: conf.parameters.texmode == 'modulate',
blend_alpha: conf.parameters.texmode == 'blend' ? conf.parameters.texblend : 1.0};

drawProgram(uniforms);
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import {tabbed,paged,combo} from "@esperanc/aggregated-inputs"
Insert cell
import {select,checkbox,button,number} from "@jashkenas/inputs"
Insert cell
import {rangeSlider} from "@mootari/range-slider"
Insert cell
createRegl = require('regl@1.4.2/dist/regl.js')
Insert cell
regl = createRegl(canvas)
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