jsketcher/web/2d.html
2014-09-16 22:07:37 -07:00

25 lines
No EOL
530 B
HTML

<html>
<head>
<title>TCAD</title>
<style>
body {
font-family: Monospace;
margin: 0px;
overflow: hidden;
}
</style>
<script src="lib/dat.gui.min.js"></script>
<script src="app/main2d.js"></script>
<script src="app/vector.js"></script>
<script src="app/viewer2d.js"></script>
<script src="app/ctrl2d.js"></script>
<script>window.onload = function() {window._TCAD_2D_APP = new TCAD.App2D();}</script>
</head>
<body>
<canvas id="editor" width="100" height="100" >
</canvas>
</body>
</html>