TA159

Notas, resueltos y trabajos practicos de la materia Sistemas Gráficos
Index Commits Files Refs Submodules README LICENSE
commit 583db9be6c7fa29a9f60f1270f7e21313b18c8f7
parent 3f2c016db13c6f7d53cf5864583535d1b1b29040
Author: mjkloeckner <martinjkloeckner@gmail.com>
Date:   Thu, 21 Mar 2024 01:08:08 -0300

Set hex colors in lower case

Diffstat:
Mmain.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.js b/main.js
@@ -22,7 +22,7 @@ let scene, camera, renderer, container;
 
 function setUpThree() {
     scene = new t.Scene();
-    scene.background = new t.Color(0x9FCFFB);
+    scene.background = new t.Color(0x9fcffb);
 
     camera = new t.PerspectiveCamera(50,
         window.innerWidth / window.innerHeight,