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="102.19116mm" | |
height="114.50028mm" | |
viewBox="0 0 102.19116 114.50028" | |
version="1.1" | |
id="svg8" | |
inkscape:version="0.92.4 (5da689c313, 2019-01-14)" | |
sodipodi:docname="lid-etching-big.svg"> | |
<defs | |
id="defs2" /> | |
<sodipodi:namedview | |
id="base" | |
pagecolor="#ffffff" | |
bordercolor="#666666" | |
borderopacity="1.0" | |
inkscape:pageopacity="0.0" | |
inkscape:pageshadow="2" | |
inkscape:zoom="5.6568542" | |
inkscape:cx="51.832818" | |
inkscape:cy="78.891699" | |
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="9.5259583" | |
originy="39.999958" /> | |
</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(9.5259588,-217.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 | |
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 | |
id="path4446-99-9" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="M 2.8648486e-4,268.99981 -7.7940685,273.4998 -5.1957775,274.99996 2.8648486e-4,271.99963 5.196354,274.99996 7.794644,273.4998 Z M 0.86638398,258.49968 v 8.99997 l 7.79435802,4.49998 v -2.99982 L 3.464159,266 l 5.15e-4,-6.00015 z m -1.7316765,0 -2.59829048,1.50017 -5.188e-4,6.00015 -5.1955457,2.99981 v 2.99982 l 7.79383898,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-8" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="M 2.8648486e-4,284.99981 -7.7940685,289.4998 l 2.598291,1.50016 5.19606398486,-3.00033 5.19606801514,3.00033 2.59829,-1.50016 z M 0.86638448,274.49968 v 8.99997 l 7.79435802,4.49998 v -2.99982 L 3.4641595,282 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829048,1.50017 -5.188e-4,6.00015 -5.1955457,2.99981 v 2.99982 l 7.79383898,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-2" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 13.856693,308.99981 -7.7943547,4.49999 2.598291,1.50016 5.1960637,-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,306 l 5.15e-4,-6.00015 z m -1.731677,0 -2.598291,1.50017 -5.18e-4,6.00015 -5.1955457,2.99981 v 2.99982 l 7.7938387,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-3" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 27.712882,317.00016 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196068,3.00033 2.59829,-1.50016 z M 28.57898,306.50003 V 315.5 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 26.846787,315.5 Z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-7" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 55.425913,316.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.889786,314 l 5.15e-4,-6.00015 z m -1.731677,0 -2.598291,1.50017 -5.19e-4,6.00015 -5.195545,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-80" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 69.282318,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 72.746191,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-99-1" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 83.138726,284.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 86.602599,282 l 5.15e-4,-6.00015 z m -1.731677,0 -2.598291,1.50017 -5.19e-4,6.00015 -5.195545,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-20" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 83.138726,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 86.602599,266 l 5.15e-4,-6.00015 z m -1.731677,0 -2.598291,1.50017 -5.19e-4,6.00015 -5.195545,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-10" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 69.282319,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 72.746192,242 l 5.15e-4,-6.00015 z m -1.731677,0 -2.598291,1.50017 -5.19e-4,6.00015 -5.195545,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-4" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 55.425912,236.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,234 58.8903,227.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-99-5" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 27.713099,236.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,234 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-99-83" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 13.856406,245.00018 -7.7943547,4.49999 2.598291,1.50016 L 13.856406,248 l 5.196068,3.00033 2.59829,-1.50016 z m 0.866098,-10.50013 v 8.99997 L 22.516862,248 v -2.99982 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.598291,1.50017 -5.18e-4,6.00015 -5.1955457,2.99981 V 248 l 7.7938387,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-22" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m -3e-7,253.00018 -7.7943545,4.49999 2.5982908,1.50016 L -3e-7,256 l 5.1960679,3.00033 2.5982901,-1.50016 z m 0.8660979,-10.50013 v 8.99997 L 8.6604556,256 v -2.99982 l -5.196583,-2.99981 5.151e-4,-6.00015 z m -1.731677,0 -2.5982901,1.50017 -5.188e-4,6.00015 -5.1955455,2.99981 V 256 l 7.7938385,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-78" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 41.569505,228.99981 -7.794354,4.49999 2.598291,1.50016 5.196063,-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.033378,226 l 5.15e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.19e-4,6.00015 -5.195545,2.99981 v 2.99982 l 7.793838,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-21" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 83.138438,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 91.798894,256 v -2.99982 l -5.196583,-2.99981 5.15e-4,-6.00015 z m -1.731677,0 -2.598291,1.50017 -5.18e-4,6.00015 -5.195546,2.99981 V 256 l 7.793839,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-52" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 83.138118,301 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196063,3.00033 2.59829,-1.50016 z m 0.866097,-10.50013 v 8.99997 l 7.794356,4.49998 V 301 l -5.196581,-2.99981 5.16e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.18e-4,6.00015 L 74.478184,301 v 2.99982 l 7.793839,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-29" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 41.569505,324.99981 -7.794355,4.49999 2.598291,1.50016 5.196064,-3.00033 5.196067,3.00033 2.598291,-1.50016 z m 0.866097,-10.50013 v 8.99997 l 7.794358,4.49998 v -2.99982 L 45.033377,322 l 5.16e-4,-6.00015 z m -1.731677,0 -2.59829,1.50017 -5.18e-4,6.00015 -5.195546,2.99981 v 2.99982 l 7.793839,-4.49998 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path4446-99-43" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="M 2.8606673e-4,300.99981 -7.7940686,305.4998 -5.1957776,306.99996 2.8606673e-4,303.99963 5.196354,306.99996 7.7946441,305.4998 Z M 0.86638399,290.49968 v 8.99997 l 7.79435801,4.49998 v -2.99982 L 3.464159,298 l 5.151e-4,-6.00015 z m -1.73167701,0 -2.59829008,1.50017 -5.188e-4,6.00015 -5.1955457,2.99981 v 2.99982 l 7.79383868,-4.49998 z" | |
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