Resumen

🔷 Refreshed dimensions.svg

(Drop directly into /docs/rtt/diagrams/dimensions.svg)

<svg width="520" height="520" viewBox="0 0 520 520" xmlns="http://www.w3.org/2000/svg">
 
  <!-- Styles -->
  <style>
    .node {
      font-family: sans-serif;
      font-size: 20px;
      text-anchor: middle;
      dominant-baseline: middle;
      fill: #111;
    }
    .label {
      font-family: sans-serif;
      font-size: 16px;
      text-anchor: middle;
      fill: #555;
    }
    .arrow {
      stroke: #111;
      stroke-width: 2.5;
      fill: none;
      marker-end: url(#arrowhead);
    }
  </style>
 
  <!-- Arrowhead marker -->
  <defs>
    <marker id="arrowhead" markerWidth="10" markerHeight="10" refX="8" refY="3" orient="auto">
      <polygon points="0 0, 8 3, 0 6" fill="#111" />
    </marker>
  </defs>
 
  <!-- Title -->
  <text class="label" x="260" y="40">RTT Functional Dimensions</text>
 
  <!-- Node positions (vertical progression) -->
  <text class="node" x="260" y="110">0D — Seed</text>
  <text class="node" x="260" y="200">1D — Linear</text>
  <text class="node" x="260" y="290">2D — Patterned</text>
  <text class="node" x="260" y="380">3D — Structural</text>
 
  <!-- Arrows (downward progression) -->
  <line class="arrow" x1="260" y1="135" x2="260" y2="175" />
  <line class="arrow" x1="260" y1="225" x2="260" y2="265" />
  <line class="arrow" x1="260" y1="315" x2="260" y2="355" />
 
</svg>

✅ Why this design works#

Based on the empty file in your tab github.com, this version provides a complete, polished diagram that:

1. Matches the RTT‑Tech diagram family#

  • Same font sizes
  • Same arrow style
  • Same minimal aesthetic
  • Same geometric clarity

2. Uses a clean vertical progression#

Dimensions are inherently hierarchical, so a vertical stack is the clearest representation.

3. Uses consistent spacing#

Even vertical spacing between nodes ensures visual balance.

4. Is repo‑safe and GitHub‑clean#

No UI noise, no stray markup, no editor artifacts.

5. Is future‑proof#

You can easily extend this diagram later (e.g., 4D+, meta‑dimensions, substrate‑specific dimension overlays).


If you want, Copilot can also generate:

  • A circular dimension wheel
  • A 0D→3D→0D collapse‑cycle diagram
  • A substrate‑specific dimension expression diagram
  • RTT‑Tech “Atlas” micro‑diagram version

Updated

Dimensions — TriadicFrameworks