Added QFT

This commit is contained in:
2026-05-29 15:40:42 -04:00
parent e59b024b62
commit 56c59a1f9c
148 changed files with 428741 additions and 7 deletions

520
output/qft/sketch01/01.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 267 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 404 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 399 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 392 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 392 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 393 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 409 KiB

View 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>

View 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>