abouttreesummaryrefslogcommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorPatrick Schönberger2021-01-04 14:52:49 +0100
committerPatrick Schönberger2021-01-04 14:52:49 +0100
commitc2adddfd9ecca5d483cf3147b8bd4870f3ea6150 (patch)
tree5dc0af9845a6766c312cf525c4d7e912d1f3897c /index.html
parent52e5f1e08c894e20d0ac402b0022a55b878486a3 (diff)
downloadcloth_sim-c2adddfd9ecca5d483cf3147b8bd4870f3ea6150.tar.gz
cloth_sim-c2adddfd9ecca5d483cf3147b8bd4870f3ea6150.zip
Basic Three.js Setup
Diffstat (limited to 'index.html')
-rw-r--r--index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..8dfb8eb
--- /dev/null
+++ b/index.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta charset="utf-8">
+ <title>Cloth Simulation</title>
+ <style>
+ body {
+ margin: 0;
+ }
+ </style>
+ <script src="./Scripts/three.js"></script>
+ <script src="./Scripts/main.js">
+ </script>
+</head>
+
+<body onload="init();">
+ <div id="threejscontainer"></div>
+</body>
+
+</html> \ No newline at end of file