Added QFT
520
output/qft/sketch01/01.svg
Normal file
|
After Width: | Height: | Size: 267 KiB |
641
output/qft/sketch01/FEYNMAN-7167.svg
Normal file
|
After Width: | Height: | Size: 404 KiB |
649
output/qft/sketch01/GAUGE-2046.svg
Normal file
|
After Width: | Height: | Size: 399 KiB |
642
output/qft/sketch01/LATTICE-1003.svg
Normal file
|
After Width: | Height: | Size: 392 KiB |
647
output/qft/sketch01/PROPAGATOR-2755.svg
Normal file
|
After Width: | Height: | Size: 392 KiB |
646
output/qft/sketch01/QFT-001.svg
Normal file
|
After Width: | Height: | Size: 393 KiB |
648
output/qft/sketch01/VACUUM-5113.svg
Normal file
|
After Width: | Height: | Size: 409 KiB |
17
output/qft/sketch01/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html><html><head><meta charset="utf-8"><title>QFT · sketch 01</title>
|
||||
<style>body{margin:0;background:#0b0b0b;color:#bbb;font:12px/1.5 ui-monospace,Menlo,monospace;padding:26px}
|
||||
h1{font-weight:400;letter-spacing:.22em;text-transform:uppercase;font-size:13px;color:#c9a370}
|
||||
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:20px;margin-top:18px}
|
||||
figure{margin:0;background:#111;border:1px solid #262626}img{width:100%;display:block}
|
||||
figcaption{padding:8px 10px;color:#e8e4d8}</style></head><body>
|
||||
<h1>QFT · sketch 01 · interlacing field lattices</h1>
|
||||
<p style="color:#777">three interlocking topologies, each its own propagator style · cubic + photon-wave · Schlegel tesseract + scalar-dash · E8 petal-ring + gluon-spring · calm centre, turbulent edges · warm vintage substrate, amber-copper active edges</p>
|
||||
<div class=grid>
|
||||
<figure><img src="QFT-001.svg"><figcaption>QFT-001 · turbulent</figcaption></figure>
|
||||
<figure><img src="GAUGE-2046.svg"><figcaption>GAUGE-2046 · turbulent</figcaption></figure>
|
||||
<figure><img src="FEYNMAN-7167.svg"><figcaption>FEYNMAN-7167 · tight</figcaption></figure>
|
||||
<figure><img src="LATTICE-1003.svg"><figcaption>LATTICE-1003 · balanced</figcaption></figure>
|
||||
<figure><img src="VACUUM-5113.svg"><figcaption>VACUUM-5113 · tight</figcaption></figure>
|
||||
<figure><img src="PROPAGATOR-2755.svg"><figcaption>PROPAGATOR-2755 · balanced</figcaption></figure>
|
||||
</div>
|
||||
</body></html>
|
||||
14
output/qft/sketch01/m.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html><html><head><meta charset="utf-8">
|
||||
<style>html,body{margin:0;background:#222}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding:10px;width:2400px}figure{margin:0;position:relative}img{width:100%;display:block}figcaption{position:absolute;left:0;bottom:0;padding:5px 8px;font:14px ui-monospace,monospace;color:#fff;background:#000a}</style></head><body>
|
||||
<div class="grid" id=g></div><script>
|
||||
const items=[
|
||||
["QFT-001.svg","QFT-001 · turbulent"],
|
||||
["GAUGE-2046.svg","GAUGE-2046 · turbulent"],
|
||||
["FEYNMAN-7167.svg","FEYNMAN-7167 · tight"],
|
||||
["LATTICE-1003.svg","LATTICE-1003 · balanced"],
|
||||
["VACUUM-5113.svg","VACUUM-5113 · tight"],
|
||||
["PROPAGATOR-2755.svg","PROPAGATOR-2755 · balanced"],
|
||||
];
|
||||
const base="http://localhost:8731/output/qft/sketch01/";const g=document.getElementById('g');
|
||||
for(const[f,c]of items){const fig=document.createElement('figure');const im=document.createElement('img');im.src=base+f;const cap=document.createElement('figcaption');cap.textContent=c;fig.append(im,cap);g.append(fig);}
|
||||
</script></body></html>
|
||||