diff --git a/docker-compose.yml b/docker-compose.yml
index 37ed0de..df33d99 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,7 +2,7 @@ services:
cg1:
image: nginx:alpine
volumes:
- - ./src:/usr/share/nginx/html:ro
+ - ./public:/usr/share/nginx/html:ro
networks:
- public
restart: unless-stopped
diff --git a/src/index.html b/public/index.html
similarity index 80%
rename from src/index.html
rename to public/index.html
index b6991b4..389debf 100644
--- a/src/index.html
+++ b/public/index.html
@@ -55,18 +55,18 @@
padding: var(--padding);
display: block;
border: solid 2px #11111b;
- background-color: #31324480;
border-radius: 20px;
}
#stats {
+ background-color: #31324480;
right: var(--padding);
position: absolute;
top: var(--padding);
}
#controls {
-
+ background-color: #313244;
}
#interpolate {
@@ -75,14 +75,14 @@
#matrices {
display: grid;
- grid-template-columns: repeat(6, 1fr);
+ grid-template-columns: 0px 1fr 0px 1fr 0px 1fr 0px 1fr 0px 1fr 0px 1fr 0px;
grid-gap: var(--padding);
padding-left: var(--padding);
padding-right: var(--padding);
}
- #matrices > div {
- background-color: rgba(255, 255, 255, 0.1);
+ .matrix {
+ background-color: #45475a;
border-radius: 20px;
display: flex;
justify-content: center;
@@ -92,7 +92,7 @@
overflow: hidden;
}
- #matrices > div::before {
+ .matrix::before {
content: '';
position: absolute;
border-radius: 20px;
@@ -100,7 +100,26 @@
height: 100%;
right: 0;
top: 0;
- background-color: rgba(255, 255, 255, 0.1);
+ background-color: #585b70;
+ transition: width linear 0.05s;
+ }
+ #matrices > span {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .matrix svg {
+ max-width: 100%;
+ height: auto;
+ }
+
+ .projection {
+ color: #f38ba8;
+ }
+
+ .lookAt {
+ color: #a6e3a1;
}
@@ -121,9 +140,9 @@
-
+
+
$$
- \color{red}
\begin{pmatrix}
1 & 0 & 0 & 0 \\
0 & 1 & 0 & 0 \\
@@ -132,9 +151,9 @@
\end{pmatrix}
$$
-
+
$$\dot{}$$
+
$$
- \color{red}
\begin{pmatrix}
\frac{2}{r-l} & 0 & 0 & 0 \\
0 & \frac{2}{t-b} & 0 & 0 \\
@@ -143,9 +162,9 @@
\end{pmatrix}
$$
-
+
$$\dot{}$$
+
$$
- \color{red}
\begin{pmatrix}
1 & 0 & 0 & - \frac{r+l}{2} \\
0 & 1 & 0 & - \frac{t+b}{2} \\
@@ -154,9 +173,9 @@
\end{pmatrix}
$$
-
+
$$\dot{}$$
+
$$
- \color{red}
\begin{pmatrix}
1 & 0 & 0 & 0 \\
0 & 1 & 0 & 0 \\
@@ -165,9 +184,9 @@
\end{pmatrix}
$$
-
+
$$\dot{}$$
+
$$
- \color{green}
\begin{pmatrix}
u_x & u_y & u_z & 0 \\
v_x & v_y & v_z & 0 \\
@@ -176,9 +195,9 @@
\end{pmatrix}
$$
-
+
$$\dot{}$$
+
$$
- \color{green}
\begin{pmatrix}
1 & 0 & 0 & -e_x \\
0 & 1 & 0 & -e_y \\
@@ -187,6 +206,7 @@
\end{pmatrix}
$$
+