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-thin.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="168.15188" | |
inkscape:cy="143.59197" | |
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="path50-4" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m -1.7320507,276 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z M -7.1135331e-7,286 -6.0621777,289.5 -5.1961517,290 -7.1135331e-7,287 5.1961533,290 l 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 12.124356,268 -0.866026,0.5 v 6 L 6.9282033,277 v 1 l 5.1961527,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.0621777,3.5 0.8660263,0.5 5.1961514,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 12.124357,284 -0.866026,0.5 v 6 L 6.9282048,293 v 1 l 5.1961522,-3 z m 3.464101,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.0621762,3.5 0.866026,0.5 5.1961502,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-4" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 25.980762,276 -0.866026,0.5 v 6 L 20.78461,285 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062177,3.5 0.866026,0.5 5.196151,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-2" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 39.837169,268 -0.866026,0.5 v 6 l -4.330127,2.5 v 1 l 5.196153,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196154,-3 v -6 z m -1.732052,10 -6.062178,3.5 0.866027,0.5 5.196151,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-3" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 39.837169,284 -0.866026,0.5 v 6 l -4.330127,2.5 v 1 l 5.196153,-3 z m 3.464101,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062177,3.5 0.866027,0.5 5.19615,-3 5.196154,3 0.866025,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-37" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 53.693575,276 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062177,3.5 0.866026,0.5 5.196151,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-8" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 67.549982,268 -0.866026,0.5 v 6 L 62.35383,277 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196154,-3 v -6 z m -1.732052,10 -6.062177,3.5 0.866026,0.5 5.196151,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-9" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 67.549982,284 -0.866026,0.5 v 6 L 62.35383,293 v 1 l 5.196152,-3 z m 3.464101,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062176,3.5 0.866026,0.5 5.19615,-3 5.196154,3 0.866025,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-44" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 81.406389,276 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062177,3.5 0.866026,0.5 5.196151,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-2" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 81.406388,292 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.06218,3.5 v -1 l -5.196156,-3 v -6 z m -1.732052,10 -6.062177,3.5 0.866026,0.5 5.196151,-3 5.196154,3 0.866025,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-28" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m -1.7320501,292 -0.866026,0.5 v 6 l -4.3301266,2.5 v 1 l 5.1961526,-3 z m 3.464102,0 v 7 l 6.0621783,3.5 v -1 l -5.1961543,-3 v -6 z M -9.0251324e-8,302 -6.0621778,305.5 -5.1961513,306 -9.0251324e-8,303 5.1961539,306 6.0621782,305.5 Z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-2" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 39.83717,316 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464101,0 v 7 l 6.062178,3.5 v -1 l -5.196154,-3 v -6 z m -1.732052,10 -6.062176,3.5 0.866026,0.5 5.19615,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-4-1" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 12.124356,300 -0.866026,0.5 v 6 L 6.9282042,309 v 1 l 5.1961518,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.0621758,3.5 0.866027,0.5 5.1961488,-3 5.196155,3 0.866023,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-2-8" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 25.980763,292 -0.866027,0.5 v 6 l -4.330125,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062178,3.5 0.866029,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-3-8" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 25.980763,308 -0.866027,0.5 v 6 l -4.330125,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062178,3.5 0.866029,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-37-0" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 39.837169,300 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062176,3.5 0.866026,0.5 5.19615,-3 5.196155,3 0.866023,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-8-7" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 53.693575,292 -0.866023,0.5 v 6 l -4.330129,2.5 v 1 l 5.196152,-3 z m 3.464103,0 v 7 l 6.062178,3.5 v -1 l -5.196152,-3 v -6 z m -1.73205,10 -6.062178,3.5 0.866026,0.5 5.196152,-3 5.196152,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-9-1" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 53.693575,308 -0.866023,0.5 v 6 l -4.330129,2.5 v 1 l 5.196152,-3 z m 3.464103,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062175,3.5 0.866026,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-44-7" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 67.549985,300 -0.866027,0.5 v 6 l -4.330126,2.5 v 1 l 5.196153,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062178,3.5 0.866026,0.5 5.196152,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-6" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 12.124356,252 -0.866026,0.5 v 6 L 6.9282037,261 v 1 l 5.1961523,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.0621773,3.5 0.866026,0.5 5.1961513,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-9" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 25.980763,244 -0.866026,0.5 v 6 L 20.78461,253 v 1 l 5.196153,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196154,-3 v -6 z m -1.732052,10 -6.062178,3.5 0.866027,0.5 5.196151,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-8" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 25.980764,260 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464101,0 v 7 l 6.062178,3.5 v -1 l -5.196154,-3 v -6 z m -1.732052,10 -6.062176,3.5 0.866026,0.5 5.19615,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-4-3" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 39.837169,252 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062176,3.5 0.866027,0.5 5.196149,-3 5.196155,3 0.866023,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-2-6" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 53.693576,244 -0.866027,0.5 v 6 l -4.330125,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062178,3.5 0.866029,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-3-9" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 53.693576,260 -0.866027,0.5 v 6 l -4.330125,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062178,3.5 0.866029,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-37-3" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 67.549982,252 -0.866026,0.5 v 6 L 62.35383,261 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062175,3.5 v -1 l -5.196151,-3 v -6 z m -1.732052,10 -6.062176,3.5 0.866026,0.5 5.19615,-3 5.196155,3 0.866023,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-8-5" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 81.406389,244 -0.86602,0.5 v 6 l -4.33013,2.5 v 1 l 5.19615,-3 z m 3.4641,0 v 7 l 6.06218,3.5 v -1 l -5.19615,-3 v -6 z m -1.73205,10 -6.06218,3.5 0.86603,0.5 5.19615,-3 5.19615,3 0.86603,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-9-3" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 81.406389,260 -0.86602,0.5 v 6 l -4.33013,2.5 v 1 l 5.19615,-3 z m 3.4641,0 v 7 l 6.06218,3.5 v -1 l -5.19616,-3 v -6 z m -1.73205,10 -6.06218,3.5 0.86603,0.5 5.19615,-3 5.19615,3 0.86603,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-44-8" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m -1.7320505,260 -0.86603,0.5 v 6 l -4.33012,2.5 v 1 l 5.19615,-3 z m 3.4641,0 v 7 l 6.062181,3.5 v -1 l -5.196161,-3 v -6 z M -4.9999998e-7,270 -6.0621805,273.5 -5.1961505,274 -4.9999998e-7,271 5.1961505,274 l 0.86603,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-1" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m -1.7320507,244 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z M -7.0160571e-7,254 -6.0621777,257.5 -5.1961517,258 -7.0160571e-7,255 5.1961533,258 l 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-4" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 12.124357,236 -0.866026,0.5 v 6 L 6.9282056,245 v 1 l 5.1961514,-3 z m 3.464101,0 v 7 l 6.062178,3.5 v -1 l -5.196154,-3 v -6 z m -1.732052,10 -6.0621754,3.5 0.8660254,0.5 5.19615,-3 5.196154,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-4-4" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 25.980762,228 -0.866026,0.5 v 6 L 20.78461,237 v 1 l 5.196152,-3 z m 3.464103,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062176,3.5 0.866027,0.5 5.196149,-3 5.196156,3 0.866023,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-9-2-61" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 39.83717,220 -0.866027,0.5 v 6 l -4.330125,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062178,3.5 0.866029,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-3-86" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 39.83717,236 -0.866027,0.5 v 6 l -4.330125,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062178,3.5 0.866029,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-37-2" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 53.693576,228 -0.866026,0.5 v 6 l -4.330126,2.5 v 1 l 5.196152,-3 z m 3.464102,0 v 7 l 6.062179,3.5 v -1 l -5.196155,-3 v -6 z m -1.732052,10 -6.062176,3.5 0.866026,0.5 5.19615,-3 5.196155,3 0.866023,-0.5 z" | |
inkscape:connector-curvature="0" /> | |
<path | |
id="path50-4-3-9-0" | |
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | |
d="m 67.549982,236 -0.866023,0.5 v 6 L 62.35383,245 v 1 l 5.196152,-3 z m 3.464103,0 v 7 l 6.062178,3.5 v -1 l -5.196155,-3 v -6 z m -1.732053,10 -6.062175,3.5 0.866026,0.5 5.196149,-3 5.196155,3 0.866024,-0.5 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