mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
25 lines
470 B
HTML
25 lines
470 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Ray Tracing In One Weekend</title>
|
|
<style>
|
|
#canvas {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
<script src="build/weekend.js"></script>
|
|
<script>
|
|
var app = new Weekend.Application();
|
|
app.start();
|
|
</script>
|
|
</body>
|
|
|
|
</html> |