Dateien nach "/" hochladen

This commit is contained in:
2026-06-03 12:49:11 +00:00
commit 23b669ed0c
5 changed files with 338 additions and 0 deletions
+113
View File
@@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="LLL.svg"
inkscape:export-filename="LLL.pdf"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
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">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.0343421"
inkscape:cx="266.83628"
inkscape:cy="235.41534"
inkscape:window-width="1920"
inkscape:window-height="1008"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<text
xml:space="preserve"
style="font-size:4.93888889px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
x="45.942753"
y="88.267967"
id="text1"><tspan
sodipodi:role="line"
id="tspan1"
style="stroke-width:0.264583;font-size:4.93888889px"
x="45.942753"
y="88.267967" /></text>
<rect
style="fill:none;stroke:#000000;stroke-width:0.31881;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1-2-61-2"
width="84.41819"
height="33.565514"
x="62.773464"
y="12.687064"
ry="7.8215718" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.31881;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1-2-7-8-0"
width="84.41819"
height="33.565514"
x="62.773464"
y="65.765274"
ry="7.8215718" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.31881;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1-2-6-7-6"
width="84.418343"
height="33.565514"
x="62.773388"
y="125.57372"
ry="7.8215714" />
<text
xml:space="preserve"
style="font-size:17.8594px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:2.23241"
x="105"
y="35.61771"
id="text2-9-1"><tspan
sodipodi:role="line"
id="tspan2-2-5"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:2.23241"
x="105"
y="35.61771">LIGHT.</tspan></text>
<text
xml:space="preserve"
style="font-size:17.8594px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:2.23241"
x="105"
y="88.691559"
id="text3-0-5"><tspan
sodipodi:role="line"
id="tspan3-2-4"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:2.23241"
x="105"
y="88.691559">LIFE.</tspan></text>
<text
xml:space="preserve"
style="font-size:17.8594px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:2.23241"
x="105"
y="148.5"
id="text4-3-7"><tspan
sodipodi:role="line"
id="tspan4-7-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:2.23241"
x="105"
y="148.5">LIBERTY.</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

+41
View File
@@ -0,0 +1,41 @@
cutter = 15;
imprint = 13;
module cutter(){
linear_extrude(cutter) import("outline.svg",center=true);
minkowski(){
linear_extrude(1) import("outline.svg",center=true);
cube([5,5,0.1],true);
}
}
module light(){
linear_extrude(imprint) import("light.svg",center=true);
minkowski(){
linear_extrude(1) import("light.svg",center=true);
cube([5,18,0.1],true);
}
cutter();
}
module life(){
linear_extrude(imprint) import("life.svg",center=true);
minkowski(){
linear_extrude(1) import("life.svg",center=true);
cube([5,18,0.1],true);
}
cutter();
}
module liberty(){
linear_extrude(imprint) import("liberty.svg",center=true);
minkowski(){
linear_extrude(1) import("liberty.svg",center=true);
cube([5,18,0.1],true);
}
cutter();
}
mirror([1,0,0])translate([0,50,0])light();
mirror([1,0,0])life();
mirror([1,0,0])translate([0,-50,0])liberty();
+62
View File
@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="76.957619mm"
height="12.287057mm"
viewBox="0 0 76.957619 12.287057"
version="1.1"
id="svg1"
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
sodipodi:docname="liberty.svg"
inkscape:export-filename="LLL.pdf"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
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">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.0343421"
inkscape:cx="21.269559"
inkscape:cy="97.64661"
inkscape:window-width="1920"
inkscape:window-height="1043"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-64.96896,-36.963057)">
<text
xml:space="preserve"
style="font-size:4.93889px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
x="45.942753"
y="88.267967"
id="text1"><tspan
sodipodi:role="line"
id="tspan1"
style="font-size:4.93889px;stroke-width:0.264583"
x="45.942753"
y="88.267967" /></text>
<path
style="font-weight:bold;font-size:17.8594px;line-height:1.25;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:2.23241"
d="M 64.96896,49.250114 V 36.963057 h 2.572521 v 10.298804 h 6.59263 v 1.988253 z m 10.909233,0 V 36.963057 h 2.572521 V 49.250114 Z M 91.731898,45.74451 q 0,1.674318 -1.255739,2.589961 -1.255739,0.915643 -3.488164,0.915643 H 80.840106 V 36.963057 h 5.624664 q 2.249866,0 3.40096,0.784837 1.159815,0.776116 1.159815,2.302188 0,1.046449 -0.584268,1.770243 -0.575547,0.715074 -1.761522,0.967966 1.49119,0.174408 2.267306,0.941804 0.784837,0.758676 0.784837,2.014415 z m -3.296315,-5.345612 q 0,-0.828439 -0.531945,-1.177255 -0.523224,-0.348817 -1.560953,-0.348817 h -2.930058 v 3.043424 h 2.947499 q 1.090051,0 1.578394,-0.374978 0.497063,-0.383698 0.497063,-1.142374 z m 0.715074,5.145042 q 0,-1.726641 -2.476597,-1.726641 h -3.261433 v 3.523046 h 3.357358 q 1.238298,0 1.805125,-0.444741 0.575547,-0.453462 0.575547,-1.351664 z m 4.586936,3.706174 V 36.963057 h 9.662217 v 1.988253 h -7.089696 v 3.087025 h 6.557746 v 1.988254 h -6.557746 v 3.235272 h 7.447226 v 1.988253 z m 20.353437,0 -2.85157,-4.665419 h -3.01727 v 4.665419 h -2.57252 V 36.963057 h 6.13917 q 2.19755,0 3.39224,0.950524 1.1947,0.941805 1.1947,2.712048 0,1.290621 -0.73252,2.232425 -0.73251,0.933084 -1.97953,1.229578 l 3.32248,5.162482 z m -0.30521,-8.51984 q 0,-1.770243 -2.26731,-1.770243 h -3.29632 v 3.62769 h 3.36608 q 1.08133,0 1.63944,-0.488343 0.55811,-0.488343 0.55811,-1.369104 z m 10.30752,-1.778964 v 10.298804 h -2.57252 V 38.95131 h -3.96779 v -1.988253 h 10.51682 v 1.988253 z m 11.41502,5.258407 v 5.040397 h -2.5638 v -5.040397 l -4.37765,-7.24666 h 2.69461 l 2.9475,5.197364 2.98238,-5.197364 h 2.6946 z m 3.89802,5.040397 v -2.659725 h 2.5202 v 2.659725 z"
id="text4-3-7"
aria-label="LIBERTY." />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

+61
View File
@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg1"
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
sodipodi:docname="life.svg"
inkscape:export-filename="LLL.pdf"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
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">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.0343421"
inkscape:cx="266.83628"
inkscape:cy="237.83234"
inkscape:window-width="1920"
inkscape:window-height="1043"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<text
xml:space="preserve"
style="font-size:4.93888889px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
x="45.942753"
y="88.267967"
id="text1"><tspan
sodipodi:role="line"
id="tspan1"
style="stroke-width:0.264583;font-size:4.93888889px"
x="45.942753"
y="88.267967" /></text>
<path
style="font-weight:bold;font-size:17.8594px;line-height:1.25;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:2.23241"
d="M 84.36751,88.691559 V 76.404501 h 2.572521 v 10.298804 h 6.59263 v 1.988254 z m 10.909233,0 V 76.404501 h 2.572521 v 12.287058 z m 7.534437,-10.298804 v 3.802098 h 6.28741 v 1.988254 h -6.28741 v 4.508452 h -2.57252 V 76.404501 h 9.0605 v 1.988254 z m 8.33671,10.298804 V 76.404501 h 9.66221 v 1.988254 h -7.08969 v 3.087025 h 6.55775 v 1.988253 h -6.55775 v 3.235272 h 7.44723 v 1.988254 z m 11.92952,0 v -2.659725 h 2.5202 v 2.659725 z"
id="text3-0-5"
aria-label="LIFE." />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

+61
View File
@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg1"
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
sodipodi:docname="light.svg"
inkscape:export-filename="LLL.pdf"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
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">
<sodipodi:namedview
id="namedview1"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.0343421"
inkscape:cx="266.83628"
inkscape:cy="237.83234"
inkscape:window-width="1920"
inkscape:window-height="1043"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<text
xml:space="preserve"
style="font-size:4.93888889px;line-height:1.25;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583"
x="45.942753"
y="88.267967"
id="text1"><tspan
sodipodi:role="line"
id="tspan1"
style="stroke-width:0.264583;font-size:4.93888889px"
x="45.942753"
y="88.267967" /></text>
<path
style="font-weight:bold;font-size:17.8594px;line-height:1.25;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:2.23241"
d="M 76.895573,68.35994 V 56.072882 h 2.572521 v 10.298804 h 6.59263 v 1.988254 z m 10.909233,0 V 56.072882 h 2.572521 V 68.35994 Z m 10.795868,-1.840007 q 1.002847,0 1.944656,-0.287773 0.9418,-0.296494 1.4563,-0.749956 v -1.70048 h -2.999817 v -1.901049 h 5.354327 v 4.517172 q -0.97668,1.002847 -2.54636,1.569674 -1.56095,0.566827 -3.27887,0.566827 -2.999821,0 -4.613096,-1.656878 -1.613276,-1.665598 -1.613276,-4.717742 0,-3.034703 1.621996,-4.647979 1.621996,-1.621996 4.665419,-1.621996 4.325327,0 5.502577,3.200391 l -2.37195,0.715073 q -0.3837,-0.933084 -1.20342,-1.412706 -0.819715,-0.479623 -1.927207,-0.479623 -1.813845,0 -2.755649,1.098772 -0.941805,1.098772 -0.941805,3.148068 0,2.084178 0.967966,3.226552 0.976686,1.133653 2.738209,1.133653 z m 15.984516,1.840007 v -5.267128 h -5.35434 v 5.267128 h -2.57252 V 56.072882 h 2.57252 v 4.89215 h 5.35434 v -4.89215 h 2.57252 V 68.35994 Z M 125.102,58.061135 V 68.35994 h -2.57252 V 58.061135 h -3.96779 v -1.988253 h 10.51682 v 1.988253 z m 3.40096,10.298805 v -2.659725 h 2.5202 v 2.659725 z"
id="text2-9-1"
aria-label="LIGHT." />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB