LUT visualizer

This commit is contained in:
Ian Gulliver
2017-08-06 15:47:12 +00:00
parent 199b73e1d1
commit 8948c1df06
2 changed files with 209 additions and 0 deletions

33
docs/lut.html Normal file
View File

@@ -0,0 +1,33 @@
<html>
<head>
<title>LUT experiment</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
table {
font-family: 'Roboto Mono';
border-style: solid;
border-width: 3px;
border-collapse: collapse;
margin: 10px;
}
th, td {
border-style: solid;
border-width: 1px;
padding: 5px;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="lut.js"></script>
<script>
new LutExperiment(document.getElementById("container"));
</script>
</body>
</html>