<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Figure 1 – Yacht Cross‑Section</title> </head> <body> <!-- Paste the entire SVG markup here --> <svg width="900" height="600" viewBox="0 0 900 600" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="black" stroke-width="2"> <rect width="890" height="510" x="5" y="5" fill="white"/> <!-- Mast --> <line x1="450" y1="50" x2="450" y2="300"/> <text x="460" y="180" font-family="sans-serif" font-size="24">1</text> <!-- Sails --> <polygon points="450,50 350,200 550,200" fill="none"/> <text x="460" y="150" font-family="sans-serif" font-size="24">2</text> <!-- Hull --> <path d="M250,300 Q450,500 650,300" fill="none"/> <!-- Keel --> <line x1="450" y1="300" x2="450" y2="400"/> <line x1="430" y1="400" x2="470" y2="400"/> <line x1="420" y1="410" x2="480" y2="410"/> <line x1="410" y1="420" x2="490" y2="420"/> <text x="460" y="380" font-family="sans-serif" font-size="24">3</text> <!-- Engine compartment (hashed) --> <rect x="300" y="260" width="100" height="40" stroke="black"/> <defs> <pattern id="hashPattern" patternUnits="userSpaceOnUse" width="4" height="4"> <path d="M0,0 L4,4" stroke="black" stroke-width="0.5"/> </pattern> </defs> <rect x="300" y="260" width="100" height="40" fill="url(#hashPattern)"/> <text x="310" y="285" font-family="sans-serif" font-size="24">4</text> <!-- Storage compartment (hashed) --> <rect x="500" y="260" width="80" height="40" stroke="black"/> <rect x="500" y="260" width="80" height="40" See more