Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
jcponce committed Aug 1, 2024
1 parent 04181b0 commit 5831713
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions threejs/attractors/lorenz-variation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@

<body>

<div class="loading-overlay" id="loadingOverlay">
<div class="spinner"></div>
</div>

<canvas class="webgl"></canvas>

<div class="hud">
Expand All @@ -49,8 +53,6 @@
</p>




</div>

<div class="footer">
Expand All @@ -68,6 +70,8 @@
<script src="../common/math.js"></script>
<script src="../attractors/lorenz-variation.js"></script>
<script type="module" src="main.js"></script>


</body>

</html>
2 changes: 1 addition & 1 deletion threejs/attractors/lorenz-variation/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const controls = new OrbitControls(camera, canvas);
controls.enableDamping = true;
controls.autoRotate = true;
controls.autoRotateSpeed = 1;

/**
* Renderer
*/
Expand Down
4 changes: 2 additions & 2 deletions threejs/attractors/lorenz-variation/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ a {
position: fixed;
width: 100%;
text-align: center;
bottom: 10px;
bottom: 15px;
}


Expand All @@ -63,4 +63,4 @@ a {
.hud {
display: none;
}
}
}

0 comments on commit 5831713

Please sign in to comment.