diff options
| -rw-r--r-- | mechanical-specifications.typ | 296 | ||||
| -rw-r--r-- | pictures/db-25-connector-cutout.svg | 611 |
2 files changed, 293 insertions, 614 deletions
diff --git a/mechanical-specifications.typ b/mechanical-specifications.typ index 966ab3f..2a433f9 100644 --- a/mechanical-specifications.typ +++ b/mechanical-specifications.typ @@ -1636,9 +1636,299 @@ maintaining EMI shielding. ==== DB-25 connector cutout <db-25-connector-cutout> #figure( - image("pictures/db-25-connector-cutout.svg"), - caption: [DB-25 connector cutout], -) <figure-db-25-connector-cutout> + cetz.canvas({ + import cetz.draw: * + + // Scale factor: 1 mm = 0.06 drawing units + let s = 0.06 + + let panel-w = 35.7 * s // 1.6065 units + let panel-h = 165.1 * s // 7.4295 units + let cx-panel = panel-w / 2 + let cy-panel = panel-h / 2 // 82.5 mm from top/bottom + + // DB-25 Cutout Dimensions (Scale for Detail View) + let ds = 0.12 // Magnified detail scale + + let d-width = 33.3 * ds // Overall cutout width (33.3 mm) + let d-height = 12.5 * ds // Cutout height (12.5 mm) + let hole-spacing = 24.99 * ds // Mounting hole spacing from center / pitch + let hole-r = (3.2 / 2) * ds // 3.2 mm diameter (1.6 mm radius) + + // ========================================== + // 1. REAR PANEL CUTOUT PLACEMENT VIEW (35.7 mm x 165.1 mm) + // ========================================== + let x-panel-start = 0 + let y-panel-start = 0 + + // View Title + content((cx-panel, panel-h + 0.8), text( + size: 8.5pt, + weight: "bold", + )[REAR PANEL PLACEMENT]) + content((cx-panel, panel-h + 0.45), text( + size: 7pt, + fill: luma(90), + )[(Centered Position)]) + + // Rear Closure Plate Outline + rect( + (x-panel-start, y-panel-start), + (x-panel-start + panel-w, y-panel-start + panel-h), + fill: luma(245), + stroke: 1.2pt + black, + ) + + // Centerlines on Rear Panel + line( + (x-panel-start - 0.4, cy-panel), + (x-panel-start + panel-w + 0.4, cy-panel), + stroke: (paint: luma(120), thickness: 0.4pt, dash: "dash-dotted"), + ) + line( + (cx-panel, y-panel-start - 0.4), + (cx-panel, y-panel-start + panel-h + 0.4), + stroke: (paint: luma(120), thickness: 0.4pt, dash: "dash-dotted"), + ) + + // Small DB-25 D-Sub Cutout Representation in Center + let sm-w = 26.0 * s + let sm-h = 11.0 * s + rect( + (cx-panel - sm-w / 2, cy-panel - sm-h / 2), + (cx-panel + sm-w / 2, cy-panel + sm-h / 2), + fill: white, + stroke: 0.8pt + black, + ) + circle( + (cx-panel - 12.5 * s, cy-panel), + radius: 1.6 * s, + fill: white, + stroke: 0.6pt + black, + ) + circle( + (cx-panel + 12.5 * s, cy-panel), + radius: 1.6 * s, + fill: white, + stroke: 0.6pt + black, + ) + + // Center X Dimension Callout (17.85 mm) + line( + (x-panel-start, y-panel-start), + (x-panel-start, y-panel-start - 0.5), + stroke: 0.4pt + luma(140), + ) + line( + (cx-panel, y-panel-start), + (cx-panel, y-panel-start - 0.5), + stroke: 0.4pt + luma(140), + ) + line( + (x-panel-start, y-panel-start - 0.45), + (cx-panel, y-panel-start - 0.45), + mark: (start: "stealth", end: "stealth"), + mark-size: 0.08, + stroke: 0.6pt + black, + ) + content((cx-panel / 2, y-panel-start - 0.7), text( + size: 6.5pt, + weight: "bold", + )[$qty(17.85, "mm")$]) + + // Center Y Dimension Callout (82.5 mm) + line( + (x-panel-start, y-panel-start), + (x-panel-start - 0.5, y-panel-start), + stroke: 0.4pt + luma(140), + ) + line( + (x-panel-start, cy-panel), + (x-panel-start - 0.5, cy-panel), + stroke: 0.4pt + luma(140), + ) + line( + (x-panel-start - 0.45, y-panel-start), + (x-panel-start - 0.45, cy-panel), + mark: (start: "stealth", end: "stealth"), + mark-size: 0.08, + stroke: 0.6pt + black, + ) + content( + (x-panel-start - 0.75, cy-panel / 2), + text(size: 6.5pt, weight: "bold")[$qty(82.5, "mm")$], + angle: 90deg, + ) + + // ========================================== + // 2. MAGNIFIED DB-25 CUTOUT GEOMETRY DETAIL + // ========================================== + let x-det-center = 6.2 + let y-det-center = cy-panel + + // View Title + content((x-det-center, y-det-center + 2.2), text( + size: 8.5pt, + weight: "bold", + )[CUTOUT GEOMETRY DETAIL]) + content((x-det-center, y-det-center + 1.85), text( + size: 7pt, + fill: luma(90), + )[(Standard D-Shaped DB-25 Profile)]) + + // Centerlines + line( + (x-det-center - 2.5, y-det-center), + (x-det-center + 2.5, y-det-center), + stroke: (paint: luma(120), thickness: 0.4pt, dash: "dash-dotted"), + ) + line( + (x-det-center, y-det-center - 1.5), + (x-det-center, y-det-center + 1.5), + stroke: (paint: luma(120), thickness: 0.4pt, dash: "dash-dotted"), + ) + + // D-Sub Trapezoidal Shroud Profile (Closed Path) + let tw = 25.0 * ds // Top wider width + let bw = 22.5 * ds // Bottom narrower width + let hh = d-height / 2 + + line( + (x-det-center - tw / 2, y-det-center + hh), + (x-det-center + tw / 2, y-det-center + hh), + (x-det-center + bw / 2, y-det-center - hh), + (x-det-center - bw / 2, y-det-center - hh), + close: true, + fill: white, + stroke: 1.2pt + black, + ) + + // Mounting Holes (Left & Right, Diameter 3.2 mm) + let hole-left-x = x-det-center - hole-spacing / 2 + let hole-right-x = x-det-center + hole-spacing / 2 + + circle( + (hole-left-x, y-det-center), + radius: hole-r, + fill: white, + stroke: 0.8pt + black, + ) + circle( + (hole-right-x, y-det-center), + radius: hole-r, + fill: white, + stroke: 0.8pt + black, + ) + + // Hole Center Crosshairs + line( + (hole-left-x - 0.2, y-det-center), + (hole-left-x + 0.2, y-det-center), + stroke: 0.3pt + luma(120), + ) + line( + (hole-left-x, y-det-center - 0.2), + (hole-left-x, y-det-center + 0.2), + stroke: 0.3pt + luma(120), + ) + line( + (hole-right-x - 0.2, y-det-center), + (hole-right-x + 0.2, y-det-center), + stroke: 0.3pt + luma(120), + ) + line( + (hole-right-x, y-det-center - 0.2), + (hole-right-x, y-det-center + 0.2), + stroke: 0.3pt + luma(120), + ) + + // Overall D-Opening Width Dimension (33.3 mm) + let x-left-edge = x-det-center - d-width / 2 + let x-right-edge = x-det-center + d-width / 2 + + line( + (x-left-edge, y-det-center + hh), + (x-left-edge, y-det-center + hh + 0.6), + stroke: 0.4pt + luma(140), + ) + line( + (x-right-edge, y-det-center + hh), + (x-right-edge, y-det-center + hh + 0.6), + stroke: 0.4pt + luma(140), + ) + line( + (x-left-edge, y-det-center + hh + 0.6), + (x-right-edge, y-det-center + hh + 0.6), + mark: (start: "stealth", end: "stealth"), + mark-size: 0.08, + stroke: 0.6pt + black, + ) + content((x-det-center, y-det-center + hh + 0.3), text( + size: 7pt, + )[Opening width: $qty(33.3, "mm")$]) + + // D-Opening Height Dimension (12.5 mm) + line( + (x-left-edge, y-det-center - hh), + (x-left-edge - 0.5, y-det-center - hh), + stroke: 0.4pt + luma(140), + ) + line( + (x-left-edge, y-det-center + hh), + (x-left-edge - 0.5, y-det-center + hh), + stroke: 0.4pt + luma(140), + ) + line( + (x-left-edge - 0.5, y-det-center - hh), + (x-left-edge - 0.5, y-det-center + hh), + mark: (start: "stealth", end: "stealth"), + mark-size: 0.08, + stroke: 0.6pt + black, + ) + content( + (x-left-edge - 0.75, y-det-center), + text(size: 7pt)[$qty(12.5, "mm")$], + angle: 90deg, + ) + + // Mounting Hole Spacing Dimension (24.99 mm) + line( + (hole-left-x, y-det-center - hh), + (hole-left-x, y-det-center - hh - 0.6), + stroke: 0.4pt + luma(140), + ) + line( + (hole-right-x, y-det-center - hh), + (hole-right-x, y-det-center - hh - 0.6), + stroke: 0.4pt + luma(140), + ) + line( + (hole-left-x, y-det-center - hh - 0.6), + (hole-right-x, y-det-center - hh - 0.6), + mark: (start: "stealth", end: "stealth"), + mark-size: 0.08, + stroke: 0.6pt + black, + ) + content((x-det-center, y-det-center - hh - 0.9), text( + size: 7pt, + )[Hole pitch: $qty(24.99, "mm")$]) + + // Hole Diameter Callout (diameter 3.2 mm) + line( + (hole-right-x, y-det-center + hole-r), + (hole-right-x + 0.6, y-det-center + 1.1), + mark: (start: "stealth"), + mark-size: 0.08, + stroke: 0.6pt + black, + ) + content( + (hole-right-x + 0.65, y-det-center + 1.15), + text(size: 6.5pt)[$2 times diameter qty(3.2, "mm")$ holes], + anchor: "west", + ) + }), + caption: [Cassette DB-25 connector cutout technical drawing showing rear panel placement coordinates and magnified CAD geometry dimensions.], +) <figure-cassette-db-25-connector-cutout-diagram> #figure( table( diff --git a/pictures/db-25-connector-cutout.svg b/pictures/db-25-connector-cutout.svg deleted file mode 100644 index 2174c9e..0000000 --- a/pictures/db-25-connector-cutout.svg +++ /dev/null @@ -1,611 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - viewBox="0 0 712.02277 355.83057" - width="712.02277" - height="355.83057" - style="font-family:serif" - version="1.1" - id="svg41" - sodipodi:docname="db-25-connector-cutout.svg" - inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns="http://www.w3.org/2000/svg" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:cc="http://creativecommons.org/ns#"> - <sodipodi:namedview - id="namedview41" - pagecolor="#ffffff" - bordercolor="#000000" - borderopacity="0.25" - inkscape:showpageshadow="false" - inkscape:pageopacity="0.0" - inkscape:pagecheckerboard="0" - inkscape:deskcolor="#d1d1d1" - showborder="false" - borderlayer="false" - inkscape:zoom="1.2698413" - inkscape:cx="362.64375" - inkscape:cy="242.55" - inkscape:window-width="1920" - inkscape:window-height="1011" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg41" /> - <defs - id="defs2"> - <marker - style="overflow:visible" - id="marker41" - refX="0" - refY="0" - orient="auto-start-reverse" - inkscape:stockid="Triangle arrow" - markerWidth="1" - markerHeight="1" - viewBox="0 0 1 1" - inkscape:isstock="true" - inkscape:collect="always" - preserveAspectRatio="xMidYMid"> - <path - transform="scale(0.5)" - style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt" - d="M 5.77,0 -2.88,5 V -5 Z" - id="path41" /> - </marker> - <marker - style="overflow:visible" - id="Triangle" - refX="0" - refY="0" - orient="auto-start-reverse" - inkscape:stockid="Triangle arrow" - markerWidth="1" - markerHeight="1" - viewBox="0 0 1 1" - inkscape:isstock="true" - inkscape:collect="always" - preserveAspectRatio="xMidYMid"> - <path - transform="scale(0.5)" - style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt" - d="M 5.77,0 -2.88,5 V -5 Z" - id="path135" /> - </marker> - <!-- Standard CAD Arrowheads --> - <marker - id="arrow-start" - viewBox="0 0 10 10" - refX="0" - refY="5" - markerWidth="6" - markerHeight="6" - orient="auto-start-reverse"> - <path - d="M 10,0 0,5 10,10 Z" - fill="#000000" - id="path1" /> - </marker> - <!-- Diagonal Hatch Pattern for Metal Cutout Section --> - </defs> - <!-- ================================================================= --> - <!-- TITLE & HEADER --> - <!-- ================================================================= --> - <!-- ================================================================= --> - <!-- VIEW 1: REAR CLOSURE ELEVATION (LEFT VIEW) --> - <!-- ================================================================= --> - <text - x="112.02275" - y="9.6103516" - text-anchor="middle" - fill="#000000" - font-size="13px" - font-weight="700" - id="text4">REAR CLOSURE ELEVATION</text> - <text - x="112.02275" - y="25.610352" - text-anchor="middle" - fill="#666666" - font-size="10px" - id="text5" - style="fill:#000000;fill-opacity:1">(Outside Face: 165.1 mm × 35.7 mm)</text> - <rect - x="85.242752" - y="47.610352" - width="53.549999" - height="247.64999" - fill="#f8fafc" - stroke="#000000" - stroke-width="2" - id="rect5" - style="fill:#ffffff;fill-opacity:1" /> - <line - x1="112.02275" - y1="32.610352" - x2="112.02275" - y2="307.61035" - stroke="#000000" - stroke-width="0.8" - stroke-dasharray="8, 3, 2, 3" - id="line5" /> - <line - x1="72.022751" - y1="171.43535" - x2="152.02275" - y2="171.43535" - stroke="#000000" - stroke-width="0.8" - stroke-dasharray="8, 3, 2, 3" - id="line6" /> - <g - transform="translate(112.02275,171.43535)" - id="g7"> - <!-- Cutout Opening --> - <polygon - points="-12,6.25 -14,-6.25 -16.65,-6.25 16.65,-6.25 14,-6.25 12,6.25 " - fill="#ffffff" - stroke="#000000" - stroke-width="1.2" - id="polygon6" /> - <path - d="m -16.65,-6.25 h 33.3 L 13.5,6.25 h -27 z" - fill="#ffffff" - stroke="#000000" - stroke-width="1.2" - id="path6" /> - <!-- Mounting Holes --> - <circle - cx="0" - cy="-12.495" - r="2.4000001" - fill="#ffffff" - stroke="#000000" - stroke-width="1" - id="circle6" /> - <circle - cx="0" - cy="12.495" - r="2.4000001" - fill="#ffffff" - stroke="#000000" - stroke-width="1" - id="circle7" /> - </g> - <line - x1="47.022755" - y1="295.26035" - x2="85.242752" - y2="295.26035" - stroke="#000000" - stroke-width="0.75" - id="line7" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="47.022755" - y1="171.43535" - x2="112.02275" - y2="171.43535" - stroke="#000000" - stroke-width="0.75" - id="line8" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="46.022755" - y1="290.86801" - x2="46.022755" - y2="176.61516" - stroke="#000000" - stroke-width="1.15268" - marker-start="url(#arrow-start)" - marker-end="url(#arrow-end)" - id="line9" - style="marker-start:url(#Triangle);marker-end:url(#marker41)" /> - <text - x="40.022755" - y="237.61035" - text-anchor="end" - fill="#000000" - font-size="10px" - font-weight="700" - id="text9">82.5 mm</text> - <text - x="40.022755" - y="249.61035" - text-anchor="end" - fill="#555555" - font-size="8.5px" - id="text10" - style="fill:#000000;fill-opacity:1">(Center Y)</text> - <line - x1="138.79276" - y1="47.610352" - x2="172.02275" - y2="47.610352" - stroke="#000000" - stroke-width="0.75" - id="line10" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="138.79276" - y1="295.26035" - x2="172.02275" - y2="295.26035" - stroke="#000000" - stroke-width="0.75" - id="line11" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="172.02275" - y1="50.628883" - x2="172.02275" - y2="290.66684" - stroke="#000000" - stroke-width="1.18141" - marker-start="url(#arrow-start)" - marker-end="url(#arrow-end)" - id="line12" - style="marker-start:url(#Triangle);marker-end:url(#marker41)" /> - <g - transform="rotate(90,6.2937016,177.72905)" - id="g12"> - <text - x="0" - y="0" - text-anchor="middle" - fill="#000000" - font-size="10.5px" - font-weight="700" - id="text12">165.1 mm</text> - </g> - <line - x1="85.242752" - y1="295.26035" - x2="85.242752" - y2="327.61035" - stroke="#000000" - stroke-width="0.75" - id="line13" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="112.02275" - y1="295.26035" - x2="112.02275" - y2="327.61035" - stroke="#000000" - stroke-width="0.75" - id="line14" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="138.79276" - y1="295.26035" - x2="138.79276" - y2="327.61035" - stroke="#000000" - stroke-width="0.75" - id="line15" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="89.30777" - y1="327.61035" - x2="134.72772" - y2="327.61035" - stroke="#000000" - stroke-width="1.10516" - marker-start="url(#arrow-start)" - marker-end="url(#arrow-end)" - id="line16" - style="marker-start:url(#Triangle);marker-end:url(#Triangle)" /> - <text - x="112.02275" - y="342.61035" - text-anchor="middle" - fill="#000000" - font-size="10.5px" - font-weight="700" - id="text16">35.7 mm</text> - <text - x="112.02275" - y="354.61035" - text-anchor="middle" - fill="#555555" - font-size="8.5px" - id="text17" - style="fill:#000000;fill-opacity:1">(Center X: 17.85 mm)</text> - <!-- ================================================================= --> - <!-- VIEW 2: DETAILED CUTOUT GEOMETRY (RIGHT VIEW) --> - <!-- ================================================================= --> - <text - x="502.02277" - y="9.6103516" - text-anchor="middle" - fill="#000000" - font-size="13px" - font-weight="700" - id="text18">DETAILED CUTOUT GEOMETRY</text> - <text - x="502.02277" - y="25.610352" - text-anchor="middle" - fill="#666666" - font-size="10px" - id="text19" - style="fill:#000000;fill-opacity:1">(Enlarged Profile: Scale 8:1)</text> - <line - x1="292.02277" - y1="167.61035" - x2="712.02277" - y2="167.61035" - stroke="#000000" - stroke-width="0.8" - stroke-dasharray="8, 3, 2, 3" - id="line19" /> - <line - x1="502.02277" - y1="27.610352" - x2="502.02277" - y2="307.61035" - stroke="#000000" - stroke-width="0.8" - stroke-dasharray="8, 3, 2, 3" - id="line20" /> - <path - d="m 380.82275,117.61035 h 242.4 q 12,0 6.8,14 l -20,72 q -6,14 -20,14 h -176 q -14,0 -20,-14 l -20,-72 q -5.2,-14 6.8,-14 z" - fill="#ffffff" - stroke="#000000" - stroke-width="2" - id="path20" /> - <g - transform="translate(502.02275,67.650352)" - id="g22"> - <circle - cx="0" - cy="0" - r="12.8" - fill="#ffffff" - stroke="#000000" - stroke-width="1.5" - id="circle20" /> - <line - x1="-18" - y1="0" - x2="18" - y2="0" - stroke="#000000" - stroke-width="0.5" - stroke-dasharray="2, 2" - id="line21" /> - <line - x1="0" - y1="-18" - x2="0" - y2="18" - stroke="#000000" - stroke-width="0.5" - stroke-dasharray="2, 2" - id="line22" /> - </g> - <g - transform="translate(502.02275,267.57035)" - id="g24"> - <circle - cx="0" - cy="0" - r="12.8" - fill="#ffffff" - stroke="#000000" - stroke-width="1.5" - id="circle22" /> - <line - x1="-18" - y1="0" - x2="18" - y2="0" - stroke="#000000" - stroke-width="0.5" - stroke-dasharray="2, 2" - id="line23" /> - <line - x1="0" - y1="-18" - x2="0" - y2="18" - stroke="#000000" - stroke-width="0.5" - stroke-dasharray="2, 2" - id="line24" /> - </g> - <line - x1="368.82275" - y1="117.61035" - x2="368.82275" - y2="89.697845" - stroke="#000000" - stroke-width="0.669771" - id="line25" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="635.22278" - y1="117.61035" - x2="635.22278" - y2="89.697845" - stroke="#000000" - stroke-width="0.669771" - id="line26" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="374.18817" - y1="89.610352" - x2="631.43237" - y2="89.610352" - stroke="#000000" - stroke-width="1.1792" - marker-start="url(#arrow-start)" - marker-end="url(#arrow-end)" - id="line27" - style="marker-start:url(#Triangle);marker-end:url(#marker41)" /> - <text - x="502.02277" - y="104.61035" - text-anchor="middle" - fill="#000000" - font-size="10.5px" - font-weight="700" - id="text27">D-Opening Width: 33.3 mm</text> - <line - x1="635.22278" - y1="117.61035" - x2="677.02277" - y2="117.61035" - stroke="#000000" - stroke-width="0.75" - id="line28" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="610.02277" - y1="217.61035" - x2="677.02277" - y2="217.61035" - stroke="#000000" - stroke-width="0.75" - id="line29" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="678.02277" - y1="122.71637" - x2="678.02277" - y2="213.29184" - stroke="#000000" - stroke-width="1.14206" - marker-start="url(#arrow-start)" - marker-end="url(#arrow-end)" - id="line30" - style="marker-start:url(#Triangle);marker-end:url(#marker41)" /> - <g - transform="rotate(90,261.2062,428.81655)" - id="g30"> - <text - x="0" - y="0" - text-anchor="middle" - fill="#000000" - font-size="10px" - font-weight="700" - id="text30">12.5 mm</text> - </g> - <line - x1="502.02277" - y1="67.650345" - x2="322.02277" - y2="67.650345" - stroke="#000000" - stroke-width="0.75" - id="line31" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="502.02277" - y1="267.57034" - x2="322.02277" - y2="267.57034" - stroke="#000000" - stroke-width="0.75" - id="line32" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="322.02277" - y1="72.181091" - x2="322.02277" - y2="263.03958" - stroke="#000000" - stroke-width="1.17249" - marker-start="url(#arrow-start)" - marker-end="url(#arrow-end)" - id="line33" - style="marker-start:url(#Triangle);marker-end:url(#marker41)" /> - <g - transform="rotate(-90,240.81655,-73.206202)" - id="g33"> - <text - x="0" - y="0" - text-anchor="middle" - fill="#000000" - font-size="10.5px" - font-weight="700" - id="text33">Mounting Pitch: 24.99 mm</text> - </g> - <line - x1="502.02277" - y1="67.650345" - x2="567.02277" - y2="37.610352" - stroke="#000000" - stroke-width="0.8" - marker-start="url(#arrow-start)" - id="line34" - style="stroke-width:0.717;stroke-dasharray:none" /> - <line - x1="567.02277" - y1="37.610352" - x2="647.02277" - y2="37.610352" - stroke="#000000" - stroke-width="0.8" - id="line35" - style="stroke-width:0.717;stroke-dasharray:none" /> - <text - x="572.02277" - y="32.610352" - fill="#000000" - font-size="9.5px" - font-weight="700" - id="text35">2× Mounting Hole: ⌀ 3.2 mm</text> - <line - x1="373.02576" - y1="118.76506" - x2="317.64319" - y2="92.133392" - stroke="#000000" - stroke-width="0.955466" - marker-start="url(#arrow-start)" - id="line36" - style="stroke-width:0.717;stroke-dasharray:none;marker-start:url(#Triangle)" /> - <text - x="314.02277" - y="93.610352" - text-anchor="end" - fill="#000000" - font-size="9px" - font-weight="600" - id="text36">Full Corner Radius</text> - <!-- ================================================================= --> - <!-- TECHNICAL NOTES SUMMARY BOX --> - <!-- ================================================================= --> - <metadata - id="metadata41"> - <rdf:RDF> - <cc:License - rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Reproduction" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Distribution" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Notice" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Attribution" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> - <cc:requires - rdf:resource="http://creativecommons.org/ns#ShareAlike" /> - </cc:License> - <cc:Work - rdf:about=""> - <cc:license - rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" /> - </cc:Work> - </rdf:RDF> - </metadata> -</svg> |
