Last active
          October 9, 2024 03:50 
        
      - 
      
- 
        Save creationix/e5a8f773c9910f4b3f6a6fedb9085754 to your computer and use it in GitHub Desktop. 
    Hexy Compute Shell
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | include <Chamfer.scad>; | |
| hex_radius=72.74597; | |
| hex_height=33.50021; | |
| // 2mm walls | |
| wall_thickness=2; | |
| gap=6; | |
| difference() { | |
| cylinder(h=hex_height,r=hex_radius, $fn=6); | |
| translate([0,0,hex_height-gap]) | |
| cylinder(h=hex_height,r=hex_radius-wall_thickness/sin(60), $fn=6); | |
| all_etching(); | |
| } | |
| lid_thick_lower=3; | |
| lid_thick_high=6; | |
| lid_slope_width=12; | |
| lid_radius=hex_radius-(gap+wall_thickness)/sin(60); | |
| lid_radius_inner=lid_radius-lid_slope_width/sin(60); | |
| translate([0,0,hex_height-(lid_thick_high-lid_thick_lower)]) | |
| { | |
| cylinder( | |
| h=lid_thick_lower, | |
| r=lid_radius, | |
| $fn=6 | |
| ); | |
| difference() { | |
| translate([0,0,lid_thick_lower]) | |
| cylinder( | |
| h=lid_thick_high-lid_thick_lower, | |
| r1=lid_radius, | |
| r2=lid_radius_inner, | |
| $fn=6 | |
| ); | |
| translate([0,0,lid_thick_high+.01]) | |
| rotate([180,0,0]) | |
| chamfer_extrude(height=1.01, angle=45, $fn=6) | |
| rotate([0,0,30]) | |
| import("lid-etching-big-thin.svg", center=true); | |
| } | |
| } | |
| module etching() { | |
| translate([hex_radius/2,-hex_radius*sin(60)-0.01,0]) | |
| rotate([90,0,180]) { | |
| chamfer_extrude(height=1.01, angle=45, $fn=6) | |
| import("etching-thin.svg"); | |
| } | |
| } | |
| module all_etching() { | |
| for (i=[0:60:300]) { | |
| rotate([0,0,i]) etching(); | |
| } | |
| } | |
| module chamfer_extrude(height = 2, angle = 10, center = false) { | |
| /* | |
| chamfer_extrude - OpenSCAD operator module to approximate | |
| chamfered/tapered extrusion of a 2D path | |
| (C) 2019-02, Stewart Russell (scruss) - CC-BY-SA | |
| NOTE: generates _lots_ of facets, as many as | |
| 6 * path_points + 4 * $fn - 4 | |
| Consequently, use with care or lots of memory. | |
| Example: | |
| chamfer_extrude(height=5,angle=15,$fn=8)square(10); | |
| generates a 3D object 5 units high with top surface a | |
| 10 x 10 square with sides flaring down and out at 15 | |
| degrees with roughly rounded corners. | |
| Usage: | |
| chamfer_extrude ( | |
| height = object height: should be positive | |
| for reliable results , | |
| angle = chamfer angle: degrees , | |
| center = false|true: centres object on z-axis [ , | |
| $fn = smoothness of chamfer: higher => smoother | |
| ] | |
| ) ... 2D path(s) to extrude ... ; | |
| $fn in the argument list should be set between 6 .. 16: | |
| < 6 can result in striking/unwanted results | |
| > 12 is likely a waste of resources. | |
| Lower values of $fn can result in steeper sides than expected. | |
| Extrusion is not truly trapezoidal, but has a very thin | |
| (0.001 unit) parallel section at the base. This is a | |
| limitation of OpenSCAD operators available at the time. | |
| */ | |
| // shift base of 3d object to origin or | |
| // centre at half height if center == true | |
| translate([ 0, | |
| 0, | |
| (center == false) ? (height - 0.001) : | |
| (height - 0.002) / 2 ]) { | |
| minkowski() { | |
| // convert 2D path to very thin 3D extrusion | |
| linear_extrude(height = 0.001) { | |
| children(); | |
| } | |
| // generate $fn-sided pyramid with apex at origin, | |
| // rotated "point-up" along the y-axis | |
| rotate(270) { | |
| rotate_extrude() { | |
| polygon([ | |
| [ 0, 0.001 - height ], | |
| [ height * tan(angle), 0.001 - height ], | |
| [ 0, 0 ] | |
| ]); | |
| } | |
| } | |
| } | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
| <svg | |
| xmlns:dc="http://purl.org/dc/elements/1.1/" | |
| xmlns:cc="http://creativecommons.org/ns#" | |
| xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
| xmlns:svg="http://www.w3.org/2000/svg" | |
| xmlns="http://www.w3.org/2000/svg" | |
| xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
| xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
| width="74.478676mm" | |
| height="85.00032mm" | |
| viewBox="0 0 74.478676 85.000319" | |
| version="1.1" | |
| id="svg8" | |
| inkscape:version="0.92.4 (5da689c313, 2019-01-14)" | |
| sodipodi:docname="lid-etching.svg"> | |
| <defs | |
| id="defs2" /> | |
| <sodipodi:namedview | |
| id="base" | |
| pagecolor="#ffffff" | |
| bordercolor="#666666" | |
| borderopacity="1.0" | |
| inkscape:pageopacity="0.0" | |
| inkscape:pageshadow="2" | |
| inkscape:zoom="2.8284271" | |
| inkscape:cx="-59.11978" | |
| inkscape:cy="147.9363" | |
| inkscape:document-units="mm" | |
| inkscape:current-layer="layer1" | |
| showgrid="true" | |
| inkscape:window-width="3840" | |
| inkscape:window-height="1494" | |
| inkscape:window-x="-11" | |
| inkscape:window-y="-11" | |
| inkscape:window-maximized="1" | |
| fit-margin-top="1" | |
| fit-margin-left="0.866025" | |
| fit-margin-right="0.866025" | |
| fit-margin-bottom="1"> | |
| <inkscape:grid | |
| type="axonomgrid" | |
| id="grid3713" | |
| units="mm" | |
| empspacing="8" | |
| enabled="true" | |
| originx="-4.3301272" | |
| originy="26.500003" /> | |
| </sodipodi:namedview> | |
| <metadata | |
| id="metadata5"> | |
| <rdf:RDF> | |
| <cc:Work | |
| rdf:about=""> | |
| <dc:format>image/svg+xml</dc:format> | |
| <dc:type | |
| rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
| <dc:title></dc:title> | |
| </cc:Work> | |
| </rdf:RDF> | |
| </metadata> | |
| <g | |
| inkscape:label="Layer 1" | |
| inkscape:groupmode="layer" | |
| id="layer1" | |
| transform="translate(-4.330127,-233.49968)"> | |
| <path | |
| id="path4446" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 41.568774,277.00077 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path4446-7" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 55.425626,269.00018 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 L 64.086082,272 v -2.99982 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 V 272 l 7.793839,-4.49998 z" /> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path4446-4" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 41.569506,292.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 45.033379,290 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" /> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path4446-0" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 27.713099,268.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 31.176972,266 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" /> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path4446-5" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 55.425912,284.99981 -7.794356,4.49999 2.598291,1.50016 5.196065,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 58.889785,282 58.8903,275.99985 Z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195547,2.99981 v 2.99982 l 7.79384,-4.49998 z" /> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path4446-9" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 27.712493,285 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 V 285 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 L 19.052559,285 v 2.99982 l 7.793839,-4.49998 z" /> | |
| <path | |
| inkscape:connector-curvature="0" | |
| id="path4446-71" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 41.569506,260.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 45.033379,258 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 38.105117,316 3.464102,-1.99999 3.464101,1.99999 -2.598075,1.5 -0.866026,-0.5 -0.866025,0.5 z" | |
| id="path4500" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 51.961524,312 v -4 L 55.425623,306.00001 58.889726,308 56.29165,309.5 55.425623,309 54.5596,309.5 v 1 z" | |
| id="path4545" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-97" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 27.713042,300.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 31.176915,298 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-8" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 55.425854,300.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 58.889727,298 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-3" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 69.282319,276.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 72.746192,274 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-02" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 55.425912,252.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 58.889785,250 58.8903,243.99985 Z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-79" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 27.712813,253.00018 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 L 36.373269,256 v -2.99982 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 V 256 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-99" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 13.856406,277.00018 -7.7943545,4.49999 2.598291,1.50016 L 13.856406,280 l 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 L 22.516862,280 v -2.99982 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.1955455,2.99981 V 280 l 7.7938385,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-1" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 13.856406,293.00018 -7.7943543,4.49999 2.598291,1.50016 L 13.856406,296 l 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 L 22.516862,296 v -2.99982 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.598289,1.50017 -5.19e-4,6.00015 -5.1955463,2.99981 V 296 l 7.7938383,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-98" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 41.569506,308.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 45.033379,306 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-796" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 69.282319,292.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 72.746192,290 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-53" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 69.282319,260.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 72.746192,258 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-718" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 41.569506,244.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 45.033379,242 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| id="path4446-2" | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 13.856693,260.99981 -7.7943552,4.49999 2.598291,1.50016 5.1960642,-3.00033 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 17.320566,258 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.1955462,2.99981 v 2.99982 l 7.7938392,-4.49998 z" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 65.817931,304 v -4 l 3.464099,-1.99999 3.464103,1.99999 -2.598076,1.5 -0.866027,-0.5 -0.866023,0.5 v 1 z" | |
| id="path4545-7" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 8.6602545,253 -8.8e-6,3.99999 L 5.196153,259 l -6e-7,-3 0.8660257,-0.5 -2e-7,-1 z" | |
| id="path4500-1" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 74.478185,253 9e-6,3.99999 3.464092,2.00001 10e-7,-3 -0.866026,-0.5 v -1 z" | |
| id="path4500-1-8" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 31.176912,312 v -4 L 27.712813,306.00001 24.24871,308 l 2.598076,1.5 0.866027,-0.5 0.866023,0.5 v 1 z" | |
| id="path4545-7-7" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 17.320505,303.99999 v -4 L 13.856406,298 l -3.464103,1.99999 2.598076,1.5 0.866027,-0.5 0.866023,0.5 v 1 z" | |
| id="path4545-7-7-8" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 22.516658,245 v 4 L 19.052559,250.99999 15.588456,249 l 2.598076,-1.5 0.866027,0.5 0.866023,-0.5 v -1 z" | |
| id="path4545-7-7-3" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 36.373064,237 v 4 L 32.908965,242.99999 29.444862,241 l 2.598076,-1.5 0.866027,0.5 0.866023,-0.5 v -1 z" | |
| id="path4545-7-7-3-9" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 46.765374,237 v 4 l 3.464099,1.99999 L 53.693576,241 51.0955,239.5 50.229473,240 49.36345,239.5 v -1 z" | |
| id="path4545-7-7-3-9-0" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 60.621781,245 v 4 L 64.08588,250.99999 67.549983,249 64.951907,247.5 64.08588,248 63.219857,247.5 v -1 z" | |
| id="path4545-7-7-3-9-0-5" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 77.94228,290.99999 -3.464102,-2 7e-6,-3.99999 3.464094,-2.00001 v 3 l -0.866026,0.5 1e-6,1 0.866026,0.5 z" | |
| id="path4545-7-0" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 77.942287,275 -3.464102,-2 7e-6,-3.99999 L 77.942286,267 v 3 l -0.866026,0.5 10e-7,1 0.866026,0.5 z" | |
| id="path4545-7-0-0" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 5.196152,275 3.464102,-2 -7e-6,-3.99999 L 5.196153,267 v 3 l 0.866026,0.5 -1e-6,1 -0.866026,0.5 z" | |
| id="path4545-7-0-8" | |
| inkscape:connector-curvature="0" /> | |
| <path | |
| style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
| d="m 5.1961524,291 3.464102,-2 -7e-6,-3.99999 L 5.1961534,283 v 3 l 0.866026,0.5 -1e-6,1 -0.866026,0.5 z" | |
| id="path4545-7-0-6" | |
| inkscape:connector-curvature="0" /> | |
| </g> | |
| </svg> | 
      
      
  Author
  
  
        
      
            creationix
  
      
      
      commented 
        Oct 8, 2024 
      
    
  

  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment