import React from 'react'; export const MwfrsLowRiseDiagrams: React.FC = () => { // Styles const strokeStyle = { stroke: 'black', strokeWidth: 1.5, fill: 'none' }; const arrowStyle = { stroke: 'black', strokeWidth: 1.5, markerEnd: 'url(#arrowhead)' }; const textStyle = { fontSize: '10px', textAnchor: 'middle' as const, layoutEffects: 'font-weight: bold' }; return (
{/* --- TRANSVERSE ELEVATION (Top) --- */} {/* Title */} TRANSVERSE ELEVATION {/* Building Outline */} {/* Roof */} {/* Walls */} {/* Gound */} {/* Hatching for ground */} {/* Load Arrows - Windward Wall */} {/* Load Arrows - Leeward Wall */} {/* (Actually suction usually points away, but diagram implies loads. Screenshot arrows point: Windward Wall -> IN Leeward Wall -> OUT (Away) Roof -> UP/DOWN ) */} {/* Fix Leeward: Start at wall, point out */} {/* Windward Overhang Arrow */} {/* Upward */} {/* Roof Pressures (Vertical Arrows) */} {/* Windward Roof */} {/* Leeward Roof */} {/* Labels */} B/2 or ALL ZONES WALL WINDWARD ROOF LEEWARD ROOF {/* --- LONGITUDINAL ELEVATION (Bottom) --- */} {/* Title */} LONGITUDINAL ELEVATION {/* Building Outline (Flat view for Longitudinal) */} {/* Gound */} {/* Mid Line */} {/* Load Arrows */} {/* Left (Windward) */} {/* Right (Leeward) - pointing away */} {/* Roof Arrows (Upward/Downward on top edge) */} {/* Labels */} L/2 or ALL ZONES WINDWARD ROOF LEEWARD ROOF
); };