-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathshaders.mjs
104 lines (91 loc) · 2.42 KB
/
shaders.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
const glsl = x => x;
export const vert = glsl`
precision highp float;
attribute vec3 position;
attribute vec3 color;
varying vec4 vpos;
varying vec4 vcolor;
varying mat4 vM;
uniform float time;
uniform float width;
uniform float height;
const float PI = 3.1415926535;
mat4 translate(vec3 p) {
return mat4(
vec4(1.0, 0.0, 0.0, 0.0),
vec4(0.0, 1.0, 0.0, 0.0),
vec4(0.0, 0.0, 1.0, 0.0),
vec4(p.x, p.y, p.z, 1.0)
);
}
mat4 rotX(float angle) {
float S = sin(angle);
float C = cos(angle);
return mat4(
vec4(1.0, 0, 0, 0),
vec4(0 , C, S, 0),
vec4(0 ,-S, C, 0),
vec4(0 , 0, 0, 1.0)
);
}
mat4 rotY(float angle) {
float S = sin(angle);
float C = cos(angle);
return mat4(
vec4(C, 0 ,-S, 0),
vec4(0, 1.0, 0, 0),
vec4(S, 0 , C, 0),
vec4(0, 0 , 0, 1.0)
);
}
mat4 rotZ(float angle) {
float S = sin(angle);
float C = cos(angle);
return mat4(
vec4( C, S, 0 , 0),
vec4(-S, C, 0 , 0),
vec4( 0, 0, 1.0, 0),
vec4( 0, 0, 0 , 1.0)
);
}
// glFrustum(left, right, bottom, top, zNear, zFar)
mat4 frustum(float left, float right, float bottom, float top, float zNear, float zFar) {
float t1 = 2.0 * zNear;
float t2 = right - left;
float t3 = top - bottom;
float t4 = zFar - zNear;
return mat4(
vec4(t1 / t2, 0, 0, 0),
vec4(0, t1 / t3, 0, 0),
vec4((right + left) / t2, (top + bottom) / t3, (-zFar - zNear) / t4, -1.0),
vec4(0, 0, (-t1*zFar) / t4, 0));
}
// gluPerspective(fieldOfView, aspectRatio, zNear, zFar)
mat4 perspective(float fieldOfView, float aspectRatio, float zNear, float zFar) {
float y = zNear * tan(fieldOfView * PI / 360.0);
float x = y * aspectRatio;
return frustum(-x, x, -y, y, zNear, zFar);
}
void main() {
vpos = vec4(position, 1.0);
mat4 perspectiveMat = perspective(45.0, width / height, 0.1, 1000.0);
mat4 translateMat = translate(vec3(sin(2.0 * time * 1e-2) * 0.05, sin(3.0 * time * 1e-2) * .1, -1.6 + sin(time * .1)));
mat4 M = perspectiveMat * translateMat * rotX(time * 0.1) * rotY(time * 0.1) * rotZ(time * 0.25);
vM = M;
gl_Position = M * vec4(position, 1.0);
vcolor = vec4(color, 1.0);
}
`;
export const frag = glsl`
precision highp float;
varying vec4 vcolor;
varying vec4 vpos;
varying mat4 vM;
uniform float width;
uniform float height;
uniform float time;
void main() {
vec4 v = vM * vpos;
gl_FragColor = (vcolor + normalize(v) - (1.0 - cos(v.x + time * 0.1) * sin(v.y * v.z * 2.5 + time * .01) * .5)*.25);
}
`;