forked from e-/Multiclass-Density-Maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
108 lines (99 loc) · 2.74 KB
/
example.html
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
105
106
107
108
<!doctype html>
<html>
<head>
<title>Scalable Rendering of Multiclass Density Maps Examples</title>
</head>
<body>
<table>
<tr>
<th>Tiling</th>
<td>Rectangular (8px, Sum)</td>
</tr>
<tr>
<th>Composing</th>
<td>Max</th>
</tr>
<tr>
<th>Scale</th>
<td>(Linear | Log | EquiDepth) Scale</td>
</tr>
<tr>
<th>Masking</th>
<td>None</td>
</tr>
</table>
<table>
<tr>
<th>LinearColorScale</th>
<th>LogColorScale (base=Math.E)</th>
<th>EquiDepthColorScale (level=3)</th>
</tr>
<tr>
<td><canvas id="canvas1"></canvas></td>
<td><canvas id="canvas2"></canvas></td>
<td><canvas id="canvas3"></canvas></td>
</tr>
</table>
<table>
<tr>
<th>Tiling</th>
<td>Rectangular (16px, Sum)</td>
</tr>
<tr>
<th>Composing</th>
<td>None</th>
</tr>
<tr>
<th>Scale</th>
<td>Linear Scale</td>
</tr>
<tr>
<th>Masking</th>
<td>(Random | Square) Weaving</td>
</tr>
</table>
<table>
<tr>
<th>RandomRectangularWeaving</th>
<th>SquareRectangularWeaving</th>
</tr>
<tr>
<td><canvas id="canvas4"></canvas></td>
<td><canvas id="canvas5"></canvas></td>
</tr>
</table>
<table>
<tr>
<th>Tiling</th>
<td>Rectangular (16px, Sum)</td>
</tr>
<tr>
<th>Composing</th>
<td>(Mean | AdditiveMix)</th>
</tr>
<tr>
<th>Scale</th>
<td>Linear Scale</td>
</tr>
<tr>
<th>Masking</th>
<td>None</td>
</tr>
</table>
<table>
<tr>
<th>MeanComposing</th>
<th>AdditiveMixComposing</th>
</tr>
<tr>
<td><canvas id="canvas6"></canvas></td>
<td><canvas id="canvas7"></canvas></td>
</tr>
</table>
<script src="dist/bundle.js" type="text/javascript"></script>
<script>
let testMain = new MCS.TestMain();
testMain.main();
</script>
</body>
</html>