By Zevan | August 21, 2018
I have so many little snippets like this laying around, at first I didn’t remember writing this when I found it the other day… then it slowly came back to me.
Looks like this is another one from the jQuery days:
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
[...]
By Zevan | August 19, 2018
Was just watching this funny video on Numberphile:
Here is the Surreal Numbers book on archive.org:
https://archive.org/stream/SurrealNumbers/Knuth-SurrealNumbers#page/n7
Got a kick out of the story around this stuff… When Knuth shows the notation for surreal numbers I suddenly remembered a weird program I’d written awhile back.
OVM
I had been out drawing in my sketchbook one sunday (almost 2 years ago) [...]
Posted in Math, misc | Tagged algebra, Math, numbers |
By Zevan | August 18, 2018
In 2015 I created QuickShader… which just takes the boilerplate out of showing a shader in the browser. Here are a few examples:
Have a look on github: https://github.com/ZevanRosser/QuickShader
By Zevan | August 18, 2018
Being able to draw smooth lines that connect arbitrary points is something that I find myself needing very frequently. This is a port of an old snippet that does just that. By averaging control points of a quadratic bezier curve we ensure that our resulting Bezier curves are always smooth.
See the Pen Bezier Skin by [...]
Posted in Graphics, Math, arrays, bezier, graphics algorithms, html5, javascript | Tagged bezier, canvas, Graphics, html5, javascript |