diff options
| author | Patrick Schönberger | 2021-01-04 14:52:49 +0100 |
|---|---|---|
| committer | Patrick Schönberger | 2021-01-04 14:52:49 +0100 |
| commit | c2adddfd9ecca5d483cf3147b8bd4870f3ea6150 (patch) | |
| tree | 5dc0af9845a6766c312cf525c4d7e912d1f3897c /index.html | |
| parent | 52e5f1e08c894e20d0ac402b0022a55b878486a3 (diff) | |
| download | cloth_sim-c2adddfd9ecca5d483cf3147b8bd4870f3ea6150.tar.gz cloth_sim-c2adddfd9ecca5d483cf3147b8bd4870f3ea6150.zip | |
Basic Three.js Setup
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 21 |
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 |
