This commit is contained in:
2025-06-28 15:45:58 +02:00
parent d140f010d0
commit ead70745d1
260 changed files with 1121678 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,36 @@
$fn=60;
include <boltsos_0.4.1/BOLTS.scad>
module legScrew() {
translate ([-8,41.5,0]) {
cylinder(h=30, d=5.4, center=true);
translate ([0,0,-12]) {
DIN931("M5");
translate([0,0,-1]) DIN931("M5");
translate([0,0,-2.5]) cylinder(h=25, d=5);
translate([0,0,22]) cylinder(h=6, d=9);
}
}
}
difference() {
// Center part
linear_extrude(height = 16)
import("../svg/center.svg");
// Legs screw holes
color("red") {
for(i=[1:1:3]) {
rotate([0,90,i*120]) legScrew();
}
}
// Hexagonal screw hole
rotate([0,0,120]) translate ([0,-14,8]) {
union() {
rotate([90,90,0]) DIN931("M5");
translate ([0,2,0]) rotate([90,90,0]) DIN931("M5");
}
}
}

View File

@@ -0,0 +1,36 @@
$fn = 200;
include <boltsos_0.4.1/BOLTS.scad>
difference() {
// Center part
linear_extrude(height = 16)
import("../svg/center_tube17.svg");
// Legs screw holes
color("red") {
for(i=[1:1:3]) {
translate ([0,0,8]) {
rotate([0,90,i*120]) {
linear_extrude(height=35,center=true)
import("../svg/screw_hole.svg");
}
}
}
}
// Hexagonal screw hole
rotate([0,0,120]) {
translate ([0,-13,8]) {
union() {
rotate([90,90,0]) {
DIN931("M5");
}
translate ([0,2,0]) {
rotate([90,90,0]) {
DIN931("M5");
}
}
}
}
}
}

View File

@@ -0,0 +1,41 @@
$fn = 60;
include <BOSL2/std.scad>
include <boltsos_0.4.1/BOLTS.scad>
module legScrew() {
translate([-8,24.5,0]) {
cylinder(h=20, d=5.4, center=true);
translate ([0,0,-7.5]) DIN931("M5");
translate ([0,0,-9]) DIN931("M5");
cylinder(h=25, d=5, center=true);
translate([0,0,7.5]) cylinder(h=6, d=9);
}
}
difference() {
// Center part
linear_extrude(height = 16)
import("../svg/center_bottom.svg");
// Legs screw holes
color("red") {
for(i=[1:1:3]) {
rotate([0,90,i*120]) legScrew();
}
}
// Center screw hole
rotate([0,0,120]) {
translate ([0,-13,8]) {
union() {
rotate([90,90,0]) {
DIN931("M3");
}
translate ([0,1,0]) {
rotate([90,90,0]) {
DIN931("M3");
}
}
}
}
}
}

View File

@@ -0,0 +1,22 @@
$fn=200;
for(i=[0:1:2]) {
translate([25*i,0,0]) {
difference() {
rotate_extrude(angle=360, convexity=10)
import("../svg/leg_top.svg");
rotate([0,90,0]) {
translate([-35,0,-10]) {
cylinder(h=20, d=6);
}
translate([-35,0,-11.5]) {
cylinder(h=4, d=26);
}
translate([-35,0,7.5]) {
cylinder(h=4, d=26);
}
}
}
}
}

View File

@@ -0,0 +1,121 @@
$fn=60;
include <BOSL2/std.scad>
include <boltsos_0.4.1/BOLTS.scad>
tube_dia=16;
delta=0.5;
module frontScrew() {
cylinder(h=20, d=5.4, center=true);
rotate([0,0,0]) {
translate ([0,0,-8]) DIN931("M5");
translate ([0,0,-10]) DIN931("M5");
}
* cylinder(h=25, d=5, center=true);
translate([0,0,8]) cylinder(h=6, d=9);
}
module backScrew() {
cylinder(h=5,d=3);
DIN931("M3");
translate ([0,0,2]) DIN931("M3");
}
// Assembled version
// [tubes]
* color("grey") {
translate([-20,0,-80]) tube(od=tube_dia,wall=2,h=200);
translate([0,0,-140]) tube(od=tube_dia,wall=2,h=200);
translate([20,0,-80]) tube(od=tube_dia,wall=2,h=200);
}
// [top]
* translate([0,0,20]) {
difference() {
cuboid([65,25,20], rounding=5);
translate([-20,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
translate([20,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
}
translate([0,-16,0]) difference() {
ycyl(l=40, d=20, rounding=10);
translate([0,-9,0]) xcyl(l=20, d=6);
translate([10.5,-12,0]) xcyl(l=6, d=30);
translate([-10.5,-12,0]) xcyl(l=6, d=30);
}
}
// [middle]
* translate([0,0,-30]) difference() {
cuboid([65,25,20], rounding=5);
translate([-20,0,0]) zcyl(l=30, d=tube_dia+1);
translate([0,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
translate([20,0,0]) zcyl(l=30, d=tube_dia+1);
}
* // [bottom]
translate([0,0,-175]) difference() {
union() {
cuboid([65,25,20], rounding=5);
translate([0,-3,0]) rotate([90,0,0]) prismoid(size1=[25,12], size2=[20,12], h=24, rounding=1);
translate([0,-27,0]) scale([1,.7,1]) zcyl(l=12, d=20, rounding=1);
}
translate([-20,0,5]) zcyl(l=25, d=tube_dia+delta, rounding=1);
zcyl(l=30, d=tube_dia+1);
translate([20,0,5]) zcyl(l=25, d=tube_dia+delta, rounding=1);
rotate([90,0,180]) translate([0,0,8]) backScrew();
zcyl(l=12, d=16, rounding=-1);
translate([0,-23,0]) cuboid([11,22,12], rounding=-1);
translate ([0,-23,0]) rotate([0,-90,0]) frontScrew();
}
// Printable version
//[top]
// V1
rotate([90,0,0]) {
difference() {
cuboid([65,25,20], rounding=5);
translate([-20,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
translate([20,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
}
translate([0,0,16]) difference() {
zcyl(l=40, d=25, rounding=12.5);
translate([0,0,9]) xcyl(l=20, d=6);
translate([10.5,0,10]) xcyl(l=6, d=30);
translate([-10.5,0,10]) xcyl(l=6, d=30);
}
}
// V2
* rotate([00,0,0]) {
difference() {
cuboid([65,25,20], rounding=5);
translate([-20,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
translate([20,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
}
translate([0,-16,0]) difference() {
ycyl(l=40, d=20, rounding=10);
translate([0,-9,0]) xcyl(l=20, d=6);
translate([10.5,-12,0]) xcyl(l=6, d=30);
translate([-10.5,-12,0]) xcyl(l=6, d=30);
}
}
//[middle]
translate([0,30,0]) rotate([90,0,0]) difference() {
cuboid([65,25,20], rounding=5);
translate([-20,0,0]) zcyl(l=30, d=tube_dia+1);
translate([0,0,-7]) zcyl(l=25, d=tube_dia+delta, rounding=1);
translate([20,0,0]) zcyl(l=30, d=tube_dia+1);
}
//[bottom]
translate([0,60,0]) rotate([-90,0,0]) difference() {
union() {
cuboid([65,25,20], rounding=5);
translate([0,-3,0]) rotate([90,0,0]) prismoid(size1=[35,20], size2=[22,20], h=24, rounding=1);
translate([0,-26.5,0]) scale([1,.55,1]) zcyl(l=20, d=22, rounding=1);
}
translate([-20,0,5]) zcyl(l=25, d=tube_dia+delta, rounding=1);
zcyl(l=30, d=tube_dia+1);
translate([20,0,5]) zcyl(l=25, d=tube_dia+delta, rounding=1);
rotate([90,0,180]) translate([0,0,8.7]) backScrew();
zcyl(l=12, d=16, rounding=-1);
translate([0,-24,0]) cuboid([11,23,20], rounding=-1);
translate ([0,-23,0]) rotate([0,-90,0]) frontScrew();
}

View File

@@ -0,0 +1,117 @@
$fn=60;
include <BOSL2/std.scad>
include <boltsos_0.4.1/BOLTS.scad>
tube_d1=12;
tube_d2=16;
delta1=0.75;
delta=0.5;
module frontScrew() {
cylinder(h=20, d=5.4, center=true);
rotate([0,0,0]) {
translate ([0,0,-8]) DIN931("M5");
translate ([0,0,-10]) DIN931("M5");
}
* cylinder(h=25, d=5, center=true);
translate([0,0,8]) cylinder(h=6, d=9);
}
module backScrew() {
cylinder(h=5,d=3.5);
DIN931("M3");
translate ([0,0,2]) DIN931("M3");
}
// Assembled version
// [tubes]
* color("grey") {
translate([-18,0,-80]) tube(od=tube_d1,wall=2,h=200);
translate([0,0,-140]) tube(od=tube_d2,wall=2,h=200);
translate([18,0,-80]) tube(od=tube_d1,wall=2,h=200);
}
// [top]
* translate([0,0,20]) {
difference() {
cuboid([58,25,20], rounding=5);
translate([-20,0,-7]) zcyl(l=25, d=tube_d1+delta, rounding=1);
translate([20,0,-7]) zcyl(l=25, d=tube_d1+delta, rounding=1);
}
rotate([-90,0,0]) {
translate([0,-17,0]) difference() {
ycyl(l=40, d=20, rounding=10);
translate([0,-9,0]) xcyl(l=20, d=6);
translate([10.5,-12,0]) xcyl(l=6, d=30);
translate([-10.5,-12,0]) xcyl(l=6, d=30);
}
}
}
// [middle]
* translate([0,0,-30]) difference() {
cuboid([58,25,20], rounding=5);
translate([-18,0,0]) zcyl(l=30, d=tube_d1+1);
translate([0,0,-7]) zcyl(l=25, d=tube_d2+delta, rounding=1);
translate([18,0,0]) zcyl(l=30, d=tube_d1+1);
}
// [bottom]
* translate([0,0,-175]) difference() {
union() {
cuboid([58,25,20], rounding=5);
translate([0,-3,0]) rotate([90,0,0]) prismoid(size1=[30,20], size2=[24,20], h=25, rounding=1);
translate([0,-27,0]) scale([1,.7,1]) zcyl(l=20, d=24, rounding=1);
}
translate([-18,0,5]) zcyl(l=25, d=tube_d1+delta, rounding=1);
zcyl(l=30, d=tube_d2+1);
translate([18,0,5]) zcyl(l=25, d=tube_d1+delta, rounding=1);
rotate([90,0,180]) translate([0,0,8]) backScrew();
zcyl(l=12, d=16, rounding=-1);
translate([0,-23,0]) cuboid([11,25,20], rounding=-1);
translate ([0,-23,0]) rotate([0,-90,0]) frontScrew();
}
// [top]
* rotate([-90,0,0]) {
translate([0,0,30]) {
difference() {
cuboid([58,25,20], rounding=5);
translate([-18,0,-7]) zcyl(l=25, d=tube_d1+delta, rounding=1);
translate([18,0,-7]) zcyl(l=25, d=tube_d1+delta, rounding=1);
}
rotate([-90,0,0]) {
translate([0,-14,0]) difference() {
ycyl(l=40, d=20, rounding=10);
translate([0,-9,0]) xcyl(l=20, d=6);
translate([10.5,-12,0]) xcyl(l=6, d=30);
translate([-10.5,-12,0]) xcyl(l=6, d=30);
}
}
}
}
// [middle]
* rotate([90,0,0]) {
difference() {
cuboid([58,25,20], rounding=5);
translate([-18,0,0]) zcyl(l=30, d=tube_d1+1);
translate([0,0,-7]) zcyl(l=25, d=tube_d2+delta, rounding=1);
translate([18,0,0]) zcyl(l=30, d=tube_d1+1);
}
}
// [bottom]
difference() {
union() {
cuboid([58,25,20], rounding=5);
translate([0,-3,0]) rotate([90,0,0]) prismoid(size1=[30,20], size2=[24,20], h=24, rounding=1);
translate([0,-27,0]) scale([1,.5,1]) zcyl(l=20, d=24, rounding=1);
translate([0,12,0]) ycyl(l=5, d=12, rounding=2);
}
translate([-18,0,5]) zcyl(l=25, d=tube_d1+delta1, rounding=1);
zcyl(l=30, d=tube_d2+1);
translate([18,0,5]) zcyl(l=25, d=tube_d1+delta1, rounding=1);
rotate([90,0,180]) translate([0,0,9]) backScrew();
zcyl(l=12, d=16, rounding=-1);
translate([0,-25,0]) cuboid([11,25,20], rounding=-1);
translate ([0,-23,0]) rotate([0,-90,0]) frontScrew();
}

View File

@@ -0,0 +1,25 @@
$fn=60;
include <BOSL2/std.scad>
leg_l=150;
leg_h=16;
leg_w=10;
module leg() {
difference() {
union() {
cuboid([leg_l-leg_h/1.5,leg_h,leg_w], rounding=2);
translate([68,0,0]) zcyl(l=leg_w, d=leg_h, rounding=2);
translate([-68,0,0]) zcyl(l=leg_w, d=leg_h, rounding=2);
}
translate([68,0,0]) zcyl(l=leg_w, d=5.5, rounding=-1);
translate([-68,0,0]) zcyl(l=leg_w, d=5.5, rounding=-1);
}
}
for(i=[0:1:2]) {
translate([0, (leg_h+5)*i,0]) {
leg();
}
}

View File

@@ -0,0 +1,24 @@
$fn=60;
include <BOSL2/std.scad>
include <boltsos_0.4.1/BOLTS.scad>
// Reduc 20x16
h = 40;
od = 30;
id1 = 20.4;
id2 = 17;
// Reduc
difference() {
zcyl(l=h, d=od, rounding=2);
zcyl(l=h, d=id2, rounding=-1);
translate([0,0,h/4]) zcyl(l=h/2, d=id1, rounding=-1);
// Screw Hole
color("red") {
translate ([0,-10,-h/4]) rotate([90,0,0]) {
DIN931("M5");
translate ([0,0,2.2]) DIN931("M5");
}
}
}

View File

@@ -0,0 +1,38 @@
$fn = 60;
height=12;
include <BOSL2/std.scad>
include <BOSL2/shapes2d.scad>
include <boltsos_0.4.1/BOLTS.scad>
module frontScrew() {
cylinder(h=20, d=5.4, center=true);
translate ([0,0,-7.5]) DIN931("M5");
translate ([0,0,-9]) DIN931("M5");
cylinder(h=25, d=5, center=true);
translate([0,0,7.5]) cylinder(h=6, d=9);
}
module backScrew() {
cylinder(h=5,d=3);
DIN931("M3");
translate ([0,0,2]) DIN931("M3");
}
color("cyan") {
for(i=[0:1:2]) {
translate([30*i,0,0]) {
difference() {
union() {
zcyl(l=height, d=25, rounding=1);
rotate([90,0,0]) prismoid(size1=[25,height], size2=[20,height], h=24, rounding=1);
translate([0,-24,0]) scale([1,.7,1]) zcyl(l=height, d=20, rounding=1);
}
zcyl(l=height, d=16, rounding=-1);
translate([0,-24,0]) cuboid([11,22,height], rounding=-1);
rotate([90,0,180]) translate([0,0,8]) backScrew();
translate ([0,-21.5,0]) rotate([0,-90,0]) frontScrew();
}
}
}
}

View File

@@ -0,0 +1,42 @@
$fn=200;
include </home/julien/.local/share/OpenSCAD/libraries/boltsos_0.4.1/BOLTS.scad>
// Calculate optimal rows and columns
n = 1;
rows = floor(sqrt(n));
cols = ceil(n/rows);
module knobs(size = 1) {
difference() {
union() {
translate([-15,-15,0]) {
linear_extrude(height = size)
import("../svg/screw.svg");
}
translate([0,0,size]) {
cylinder(5, d=size);
}
}
// M5 screw hole
color("red", alpha=1) {
union() {
translate([0,0,5]) {
DIN931("M5");
}
translate([0,0,2.5]) {
DIN931("M5");
}
cylinder(20, d=5.5);
}
}
}
}
// Create a 2D array of squares
for(i = [0:rows-1]) {
for(j = [0:cols-1]) {
translate([35*j,35*i,0]) {
knobs(size = 10);
}
}
}

View File

@@ -0,0 +1,14 @@
$fn = 60;
include <BOSL2/std.scad>
tube_dia=16;
// new
cuboid([90,150,9], rounding=3) attach(BOT) textured_tile("trunc_diamonds", [80,140], tex_reps=[10,10]/*, style="convex"*/);
translate([0,0,17]) {
difference() {
cyl(l=25, d1=80, d2=26, rounding1=-5, rounding2=5);
zcyl(l=25, d=tube_dia+.5, rounding=-2);
}
}

View File

@@ -0,0 +1,46 @@
$fn = 128;
include <boltsos_0.4.1/BOLTS.scad>
difference() {
// Holder
difference() {
union() {
color("red") {
translate([-40,-90.384,0]) {
linear_extrude(height = 8)
import("../svg/holder.svg");
}
translate([0,-50.384,0]) {
cylinder(4, d=80);
}
translate([0,-50.384,0]) {
cylinder(3, d1=10, d2=80);
}
}
cylinder(20, r=15);
}
}
cylinder(20, r=6.5);
// Hexagonal screw hole
color("green") {
rotate([0,0,180]) {
translate ([0,-10.5,10]) {
union() {
rotate([90,90,0]) {
DIN931("M5");
}
translate ([0,3.5,0]) {
rotate([90,90,0]) {
DIN931("M5");
}
}
}
}
}
}
}

View File

@@ -0,0 +1,34 @@
$fn = 60;
include <BOSL2/std.scad>
include <boltsos_0.4.1/BOLTS.scad>
tube_dia=16;
difference() {
union() {
// base
cuboid([116,116,13], rounding=2);
// tube
translate([0,-68,0]) zcyl(l=13, d=26, rounding=2);
// screw
translate([0,-79.5,0]) cuboid([15,13,13], rounding=2);
translate([0,-84.5,0]) xcyl(l=15, d=13, rounding=2);
// back leg
translate([0,-56.5,0]) rotate([90,0,0]) prismoid(size1=[80,13], size2=[25,13], h=13, rounding=2);
}
translate([0,0,3]) cuboid([110,110,11], rounding=2);
// middle round
translate([0,0,-2.5]) zcyl(l=2, d=80, rounding=1);
// tube
translate([0,-68,0]) zcyl(l=13, d=tube_dia+.5, rounding=-1);
// hex screw hole
translate([0,-84.5,0]) {
cuboid([1.5,20,15]);
translate ([-4.5,0,0]) rotate([0,90,0]) {
DIN931("M5");
zcyl(l=15, d=5.2);
}
}
}

View File

@@ -0,0 +1,208 @@
id = 16.5; // inner diameter of ring
od = id+5; // outer diameter of ring
height = 16; // height of ring
gap = 120; // ring opening in degrees
ends=1; // 0 no ends, 1 round ends, 2 clamp ends
hd=4; // mount hole diameter
cd=8; // countersink diameter
cdepth=3; // coutersink depth
blobsize=1; // size of rounded ends, if ends==1
sw=16; // mounting block width
sdepth=3; // support depth
nholes=1; // number of support holes.
block_holes=[1]; // block some holes e.g. [2,3]
sh=14; // mounting block height. NB total height is nholes x height.
support_loc=0; // 0 = mounting block is centered, >0 centred on hole number
support_rot=90; // support angle / clamp angle.
flat_bottom=false; //remove all points below the bottom of the ring for ease of printing
clamp_width=5; // width of clamp ends
clamp_depth=10; // depth of clamp ends
clamp_height=10; // height of clamp ends
clamp_hole=3; // diameter of clap screw hole
clamp_holew=1; // clamp hole width
// internal constants
$fn=100;
g=1/(nholes+1);
fracs=[for (i=[g:g:(1-g)]) each i];
sh2=sh+cd;
module main() {
difference() {
union(){
// the clip
clip();
// mounting block
if (nholes>0) {
rotate([support_rot,0,0]) {
if (support_loc==0) { //center
translate([0,0,-(sh/2)*(nholes-1)]){
support_block();
}
} else {
translate([0,0,-sh*(support_loc-1)]){
support_block();
}
}
}
}
}
if(nholes>0){
// holes go through clip and mounting block
rotate([support_rot,0,0]) {
if (support_loc==0) { //center
translate([0,0,-(sh/2)*(nholes-1)]){
holes();
}
} else {
translate([0,0,-sh*(support_loc-1)]){
holes();
}
}
}
}
//flat bottom
if (flat_bottom) {
translate([0,0,-(od+sh)-height/2]) {
cube(2*(od+sh),center=true);
}
}
}
} //main
module end_blobs(h,d,angle,od,center=false) {
translate([od,0,0]){
cylinder(h=h,d=d,center=center);
}
rotate([0,0,angle]) {
translate([od,0,0]){
cylinder(h=h,d=d,center=center);
}
}
} //end_blobs
module end_clamps(){
translate([id/2+clamp_depth/2+(od-id)/4,-clamp_width/2,0]){
difference(){
cube([clamp_depth,clamp_width,clamp_height],center=true);
translate([-clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
translate([clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
cube([clamp_holew,clamp_width+2,clamp_hole],center=true);
}
}
rotate([0,0,gap]) {
translate([id/2+clamp_depth/2+(od-id)/4,clamp_width/2,0]){
difference(){
cube([clamp_depth,clamp_width,clamp_height],center=true);
translate([-clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
translate([clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
cube([clamp_holew,clamp_width+2,clamp_hole],center=true);
}
}
}
}
module wedge(h,d,angle,center=false) {
intersection(){
cylinder(h=h,d=d,center=center);
x = (sqrt(2*(d^2))/2)+1;
y = 0;
xr = x*cos(angle)-y*sin(angle);
yr = x*sin(angle)+y*cos(angle);
linear_extrude(h*2,center=center){
if (angle<=90){
polygon([[x,0],[xr,yr],[0,0]]);
} else if (angle<=180) {
polygon([[x,0],[0,x],[xr,yr],[0,0]]);
} else if (angle<=270) {
polygon([[x,0],[0,x],[-x,0],[xr,yr],[0,0]]);
} else {
polygon([[x,0],[0,x],[-x,0],[0,-x],[xr,yr],[0,0]]);
}
}
}
} //wedge
module support_block() {
for (k = [g:g:(1-g)]) {
offset=sh*((k-g)/g);
translate([-(sdepth/2)-id/2,0,offset]){
cube([sdepth,sw,sh],center=true);
}
}
} //support_block
module clip(){
rotate([0,0,-gap/2]){
difference() {
cylinder(h=height,d=od,center=true);
cylinder(h=height*2,d=id,center=true);
wedge(h=height*2,d=od+1,center=true,angle=gap);
}
if (ends==1) {
end_blobs(h=height,d=((od-id)/2)+blobsize,angle=gap,od=(id+(od-id)/2)/2,center=true);
}
if (ends==2) {
end_clamps();
}
}
} //clip
module holes(){
for (f = [1:nholes]) {
k=fracs[f-1];
if (len(search(f,block_holes))==0) {
offset=sh*((k-g)/g);
translate([-(sdepth/2)-id/2,0,offset]){
// mount holes
rotate([0,90,0]){
cylinder(h=2*sdepth,d=hd,center=true);
}
// countersink
translate([sdepth/2-cdepth,0,0]){
rotate([0,90,0]){
cylinder(h=2*sdepth,d=cd);
}
}
}
}
}
}
difference() {
union() {
// base ring
main();
// closure
translate([-21.5,-16,0]) {
linear_extrude(height = 16, center=true)
import("../svg/closure_ext.svg");
}
}
translate([-21.5,-16,0]) {
linear_extrude(height = 8, center=true)
import("../svg/closure_hole.svg");
}
}

View File

@@ -0,0 +1,200 @@
id = 16; // inner diameter of ring
od = id+5; // outer diameter of ring
height = 5; // height of ring
gap = 100; // ring opening in degrees
ends=1; // 0 no ends, 1 round ends, 2 clamp ends
hd=1; // mount hole diameter
cd=7; // countersink diameter
cdepth=3; // coutersink depth
blobsize=1; // size of rounded ends, if ends==1
sw=5; // mounting block width
sdepth=14; // support depth
nholes=1; // number of support holes.
block_holes=[1,2,3,4,5]; // block some holes e.g. [2,3]
sh=10; // mounting block height. NB total height is nholes x height.
support_loc=0; // 0 = mounting block is centered, >0 centred on hole number
support_rot=90; // support angle / clamp angle.
flat_bottom=false; //remove all points below the bottom of the ring for ease of printing
clamp_width=5; // width of clamp ends
clamp_depth=10; // depth of clamp ends
clamp_height=10; // height of clamp ends
clamp_hole=3; // diameter of clap screw hole
clamp_holew=1; // clamp hole width
// internal constants
$fn=100;
g=1/(nholes+1);
fracs=[for (i=[g:g:(1-g)]) each i];
sh2=sh+cd;
module main() {
difference() {
union(){
// the clip
clip();
// mounting block
if (nholes>0) {
rotate([support_rot,0,0]) {
if (support_loc==0) { //center
translate([0,0,-(sh/2)*(nholes-1)]){
support_block();
}
} else {
translate([0,0,-sh*(support_loc-1)]){
support_block();
}
}
}
}
}
if(nholes>0){
// holes go through clip and mounting block
rotate([support_rot,0,0]) {
if (support_loc==0) { //center
translate([0,0,-(sh/2)*(nholes-1)]){
holes();
}
} else {
translate([0,0,-sh*(support_loc-1)]){
holes();
}
}
}
}
//flat bottom
if (flat_bottom) {
translate([0,0,-(od+sh)-height/2]) {
cube(2*(od+sh),center=true);
}
}
}
} //main
module end_blobs(h,d,angle,od,center=false) {
translate([od,0,0]){
cylinder(h=h,d=d,center=center);
}
rotate([0,0,angle]) {
translate([od,0,0]){
cylinder(h=h,d=d,center=center);
}
}
} //end_blobs
module end_clamps(){
translate([id/2+clamp_depth/2+(od-id)/4,-clamp_width/2,0]){
difference(){
cube([clamp_depth,clamp_width,clamp_height],center=true);
translate([-clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
translate([clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
cube([clamp_holew,clamp_width+2,clamp_hole],center=true);
}
}
rotate([0,0,gap]) {
translate([id/2+clamp_depth/2+(od-id)/4,clamp_width/2,0]){
difference(){
cube([clamp_depth,clamp_width,clamp_height],center=true);
translate([-clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
translate([clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
cube([clamp_holew,clamp_width+2,clamp_hole],center=true);
}
}
}
}
module wedge(h,d,angle,center=false) {
intersection(){
cylinder(h=h,d=d,center=center);
x = (sqrt(2*(d^2))/2)+1;
y = 0;
xr = x*cos(angle)-y*sin(angle);
yr = x*sin(angle)+y*cos(angle);
linear_extrude(h*2,center=center){
if (angle<=90){
polygon([[x,0],[xr,yr],[0,0]]);
} else if (angle<=180) {
polygon([[x,0],[0,x],[xr,yr],[0,0]]);
} else if (angle<=270) {
polygon([[x,0],[0,x],[-x,0],[xr,yr],[0,0]]);
} else {
polygon([[x,0],[0,x],[-x,0],[0,-x],[xr,yr],[0,0]]);
}
}
}
} //wedge
module support_block() {
for (k = [g:g:(1-g)]) {
offset=sh*((k-g)/g);
translate([-(sdepth/2)-id/2,0,offset]){
cube([sdepth,sw,sh],center=true);
}
}
} //support_block
module clip(){
rotate([0,0,-gap/2]){
difference() {
cylinder(h=height,d=od,center=true);
cylinder(h=height*2,d=id,center=true);
wedge(h=height*2,d=od+1,center=true,angle=gap);
}
if (ends==1) {
end_blobs(h=height,d=((od-id)/2)+blobsize,angle=gap,od=(id+(od-id)/2)/2,center=true);
}
if (ends==2) {
end_clamps();
}
}
} //clip
module holes(){
for (f = [1:nholes]) {
k=fracs[f-1];
if (len(search(f,block_holes))==0) {
offset=sh*((k-g)/g);
translate([-(sdepth/2)-id/2,0,offset]){
// mount holes
rotate([0,90,0]){
cylinder(h=2*sdepth,d=hd,center=true);
}
// countersink
translate([sdepth/2-cdepth,0,0]){
rotate([0,90,0]){
cylinder(h=2*sdepth,d=cd);
}
}
}
}
}
}
main();
translate([-21.5,0,3.5]) {
rotate([90,0,-90]) {
linear_extrude(height = 3, center=true)
import("../svg/name_tag_ines.svg");
}
}

View File

@@ -0,0 +1,13 @@
$fn = 128;
difference() {
union() {
translate([0,0,10]) {
scale([1,1,0.5]) {
sphere(r=9.5);
}
}
cylinder(10, d=19);
}
cylinder(9, d=17);
}

View File

@@ -0,0 +1,200 @@
id = 20; // inner diameter of ring
od = id+5; // outer diameter of ring
height = 5; // height of ring
gap = 100; // ring opening in degrees
ends=1; // 0 no ends, 1 round ends, 2 clamp ends
hd=1; // mount hole diameter
cd=7; // countersink diameter
cdepth=3; // coutersink depth
blobsize=2; // size of rounded ends, if ends==1
sw=5; // mounting block width
sdepth=11.5; // support depth
nholes=1; // number of support holes.
block_holes=[1,2,3,4,5]; // block some holes e.g. [2,3]
sh=10; // mounting block height. NB total height is nholes x height.
support_loc=0; // 0 = mounting block is centered, >0 centred on hole number
support_rot=90; // support angle / clamp angle.
flat_bottom=false; //remove all points below the bottom of the ring for ease of printing
clamp_width=5; // width of clamp ends
clamp_depth=10; // depth of clamp ends
clamp_height=10; // height of clamp ends
clamp_hole=3; // diameter of clap screw hole
clamp_holew=1; // clamp hole width
// internal constants
$fn=100;
g=1/(nholes+1);
fracs=[for (i=[g:g:(1-g)]) each i];
sh2=sh+cd;
module main() {
difference() {
union(){
// the clip
clip();
// mounting block
if (nholes>0) {
rotate([support_rot,0,0]) {
if (support_loc==0) { //center
translate([0,0,-(sh/2)*(nholes-1)]){
support_block();
}
} else {
translate([0,0,-sh*(support_loc-1)]){
support_block();
}
}
}
}
}
if(nholes>0){
// holes go through clip and mounting block
rotate([support_rot,0,0]) {
if (support_loc==0) { //center
translate([0,0,-(sh/2)*(nholes-1)]){
holes();
}
} else {
translate([0,0,-sh*(support_loc-1)]){
holes();
}
}
}
}
//flat bottom
if (flat_bottom) {
translate([0,0,-(od+sh)-height/2]) {
cube(2*(od+sh),center=true);
}
}
}
} //main
module end_blobs(h,d,angle,od,center=false) {
translate([od,0,0]){
cylinder(h=h,d=d,center=center);
}
rotate([0,0,angle]) {
translate([od,0,0]){
cylinder(h=h,d=d,center=center);
}
}
} //end_blobs
module end_clamps(){
translate([id/2+clamp_depth/2+(od-id)/4,-clamp_width/2,0]){
difference(){
cube([clamp_depth,clamp_width,clamp_height],center=true);
translate([-clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
translate([clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
cube([clamp_holew,clamp_width+2,clamp_hole],center=true);
}
}
rotate([0,0,gap]) {
translate([id/2+clamp_depth/2+(od-id)/4,clamp_width/2,0]){
difference(){
cube([clamp_depth,clamp_width,clamp_height],center=true);
translate([-clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
translate([clamp_holew/2,0,0]) {
rotate([90,0,0]){
cylinder(d=clamp_hole,h=clamp_width+2,center=true);
}
}
cube([clamp_holew,clamp_width+2,clamp_hole],center=true);
}
}
}
}
module wedge(h,d,angle,center=false) {
intersection(){
cylinder(h=h,d=d,center=center);
x = (sqrt(2*(d^2))/2)+1;
y = 0;
xr = x*cos(angle)-y*sin(angle);
yr = x*sin(angle)+y*cos(angle);
linear_extrude(h*2,center=center){
if (angle<=90){
polygon([[x,0],[xr,yr],[0,0]]);
} else if (angle<=180) {
polygon([[x,0],[0,x],[xr,yr],[0,0]]);
} else if (angle<=270) {
polygon([[x,0],[0,x],[-x,0],[xr,yr],[0,0]]);
} else {
polygon([[x,0],[0,x],[-x,0],[0,-x],[xr,yr],[0,0]]);
}
}
}
} //wedge
module support_block() {
for (k = [g:g:(1-g)]) {
offset=sh*((k-g)/g);
translate([-(sdepth/2)-id/2,0,offset]){
cube([sdepth,sw,sh],center=true);
}
}
} //support_block
module clip(){
rotate([0,0,-gap/2]){
difference() {
cylinder(h=height,d=od,center=true);
cylinder(h=height*2,d=id,center=true);
wedge(h=height*2,d=od+1,center=true,angle=gap);
}
if (ends==1) {
end_blobs(h=height,d=((od-id)/2)+blobsize,angle=gap,od=(id+(od-id)/2)/2,center=true);
}
if (ends==2) {
end_clamps();
}
}
} //clip
module holes(){
for (f = [1:nholes]) {
k=fracs[f-1];
if (len(search(f,block_holes))==0) {
offset=sh*((k-g)/g);
translate([-(sdepth/2)-id/2,0,offset]){
// mount holes
rotate([0,90,0]){
cylinder(h=2*sdepth,d=hd,center=true);
}
// countersink
translate([sdepth/2-cdepth,0,0]){
rotate([0,90,0]){
cylinder(h=2*sdepth,d=cd);
}
}
}
}
}
}
main();
translate([-21.5,0,4.5]) {
rotate([90,0,-90]) {
* linear_extrude(height = 3, center=true)
import("../svg/name_tag.svg");
}
}

View File

@@ -0,0 +1,18 @@
$fn = 128;
difference() {
cube([23,23,20]);
* translate([3,3,3]) {
cube(17,17,18);
}
translate([11.5,11.5,3]) {
cylinder(18,d=17);
}
color("red") {
rotate([0,90,0]) {
translate([-11,12,0]) {
cylinder(23,d=5);
}
}
}
}

View File

@@ -0,0 +1,13 @@
$fn=60;
include <BOSL2/std.scad>
h = 40;
od = 17;
id1 = 12.4;
difference() {
zcyl(l=h, d=od, rounding=2);
translate([0,0,3]) zcyl(l=h-6, d=id1, rounding=-1);
}

View File

@@ -0,0 +1,64 @@
//knob parameters
KNOB_HEIGHT=15;
KNOB_DIAM=30;
//screw parameters
SCREWHEAD_FACETOFACE=8;
SCREWHEAD_DEPTH=10;
THRU_HOLE_DIAM=5.2;
//grippy cutouts parameters
NUM_GRIP_CUTOUTS=10;
GRIP_CUTOUT_DIAM=4;
CUTOUT_RADIUS_ADJ=1;
module FaceToFaceHex(width,height){
cube([width/sqrt(3),width,height],center = true,$fn=64);
rotate([0,0,120])cube([width/sqrt(3),width,height],center = true);
rotate([0,0,240])cube([width/sqrt(3),width,height],center = true);
}
// a=angle, r=radius of rotation
module rotate_on_circle(angle, radius) {
dx=radius*sin(angle);
dy=radius*cos(angle);
translate([dx,dy,0])
children();
}
rotate([180,0,0]) {
difference(){
//Knob
union(){
translate([0, 0, -(((KNOB_HEIGHT-SCREWHEAD_DEPTH)/2)+0.01)])
cylinder(r=KNOB_DIAM/2, h=KNOB_HEIGHT, center=true,$fn=64);
translate([0, 0, -(((KNOB_HEIGHT-SCREWHEAD_DEPTH+KNOB_HEIGHT)/2))]) {
cylinder(r=KNOB_DIAM/4, h=KNOB_HEIGHT/2, center=true,$fn=64);
}
};
//screw
union(){
//screwHead
FaceToFaceHex(SCREWHEAD_FACETOFACE,SCREWHEAD_DEPTH);
//screwHole
translate([0, 0, -(((KNOB_HEIGHT+SCREWHEAD_DEPTH)/2)+0.001)])
cylinder(r=THRU_HOLE_DIAM/2, h=KNOB_HEIGHT+KNOB_HEIGHT/2+0.001, center=true,$fn=64);
};
//grippyCutouts
for(i=[1:NUM_GRIP_CUTOUTS]){
rot_angle=(360/NUM_GRIP_CUTOUTS)*i;
translate([0,0,-(((KNOB_HEIGHT-SCREWHEAD_DEPTH)/2)+0.01)])
rotate_on_circle(rot_angle,(KNOB_DIAM/2)+CUTOUT_RADIUS_ADJ)
cylinder(r=GRIP_CUTOUT_DIAM/2,h=KNOB_HEIGHT+0.01,center=true,$fn=64);
};
//top filet
translate([0, 0,-(((KNOB_HEIGHT-SCREWHEAD_DEPTH)/2)-0.1)])
rotate_extrude()
polygon(points = [[KNOB_DIAM,KNOB_HEIGHT], [0,KNOB_HEIGHT+2],[0,KNOB_HEIGHT],[KNOB_DIAM/1.29,0]],$fn=100);
//down filet
translate([0, 0,-(((KNOB_HEIGHT-SCREWHEAD_DEPTH)/2)+0.1)])
rotate_extrude()
polygon(points = [[-KNOB_DIAM,-KNOB_HEIGHT], [0,-KNOB_HEIGHT-2],[0,-KNOB_HEIGHT],[-KNOB_DIAM/1.29,0]],$fn=100);
}
}

View File

@@ -0,0 +1,31 @@
$fn = 200;
include <boltsos_0.4.1/BOLTS.scad>
difference() {
difference() {
// Holder
union() {
linear_extrude(height = 16)
import("../svg/center_blocker.svg");
translate([50.5,0,8]) {
rotate([0,90,0]) {
cylinder(7, r=8);
}
}
translate([58.5,0,8]) {
rotate([0,90,0]) {
cylinder(7, r=8);
}
}
}
}
// Hexagonal screw hole
color("green") {
translate ([54,0,8]) {
rotate([0,90,0]) {
DIN931("M5");
}
}
}
}

View File

@@ -0,0 +1,4 @@
$fn = 256;
rotate_extrude(angle=360, convexity=10)
import("../svg/test.svg");

View File

@@ -0,0 +1,44 @@
// Provided under a Creative Commons Share Alike License
// CC-BY-SA
// Created by MacLemon
// This Clip is used for mounting an LED strip to a pipe. Either place it between LEDs, or print from translucent material. I recommend using PET-G.
//$fn=30; // Usually fine for rendering previews.
//$fn=60; // Used for final rending to .stl. (Yes, this IS slow.)
$fn= $preview ? 15 : 30; // uses 30 fragments for preview, 64 for rendering.
pipe_diameter = 16.3; //mm Diameter of the pipe the clip shall hold on to.
outer_diameter = 23; //mm Outer diamter of the clip. (How beefy the clip is.
clip_width = 7; //mm Thickness of the clip. Shall fit in between LEDs.
strip_width = 12.3; //mm How wide the LED strip to be mounted is.
strip_height = 3; //mm Thickness, or how tall is the LED strip including an optional Epoxy cover.
rounding = 1; //mm
clip_thickness = outer_diameter - pipe_diameter; // mm
minkowski(){
difference(){
hull(){ // ring + LED strip holder block
cylinder (r = outer_diameter / 2 - rounding / 2, h = clip_width - rounding, center = true); // Clip Ring
translate ([(pipe_diameter + strip_height) / 2, 0, 0])
cube ([ strip_height + clip_thickness - rounding, strip_width + clip_thickness, clip_width - rounding], center = true); // LED Block
translate ([(-pipe_diameter - strip_height) / 2, 0, 0])
cube ([ strip_height + clip_thickness - rounding, strip_width + clip_thickness, clip_width - rounding], center = true); // grip Block
}
// Remove LED strip cutout
translate ([(pipe_diameter / 2 + strip_height + rounding)/2, 0, 0])
cube ([(pipe_diameter / 2 + strip_height + rounding), strip_width + rounding , clip_width * 2], center = true);
// Remove clip on section
translate ([-sqrt(2 * pow(outer_diameter, 2))/2, 0, 0])
rotate ([0, 0 ,135]) {
cube ([outer_diameter, outer_diameter, clip_width * 2 ], center = true);
}
// Remove pipe
#cylinder (r = pipe_diameter / 2 + rounding, h = clip_width * 12, center = true);
}
sphere (r = rounding);
}

View File

@@ -0,0 +1,4 @@
include <ujoint/ujoint.scad>
//create a ujoint with a radius of 20mm
ujoint(R=10);

View File

@@ -0,0 +1,44 @@
$fn = 128;
include </home/julien/.local/share/OpenSCAD/libraries/boltsos_0.4.1/BOLTS.scad>
difference() {
rotate_extrude(angle=360, convexity=10)
import("../svg/v2_bottom.svg");
translate([0,0,-1]) {
for(i=[1:1:3]) {
rotate([0,0,i*120]) {
linear_extrude(26)
import("../svg/v2_tripod_holes.svg");
}
}
}
// Legs screw holes
color("red") {
for(i=[1:1:3]) {
translate ([0,0,10]) {
rotate([0,90,i*120-90]) {
linear_extrude(height=35,center=true)
import("../svg/v2_screw_holes.svg");
}
}
}
}
// Hexagonal screw hole
color("green") {
rotate([0,0,150]) {
translate ([0,-15,10]) {
union() {
rotate([90,90,0]) {
DIN931("M5");
}
translate ([0,3,0]) {
rotate([90,90,0]) {
DIN931("M5");
}
}
}
}
}
}
}

View File

@@ -0,0 +1,42 @@
$fn = 128;
include </home/julien/.local/share/OpenSCAD/libraries/boltsos_0.4.1/BOLTS.scad>
difference() {
rotate_extrude(angle=360, convexity=10)
import("../svg/v2_mid.svg");
for(i=[1:1:3]) {
rotate([0,0,i*120]) {
linear_extrude(25)
import("../svg/v2_tripod_holes.svg");
}
}
// Legs screw holes
color("red") {
for(i=[1:1:3]) {
translate ([0,0,10]) {
rotate([0,90,i*120-90]) {
linear_extrude(height=35,center=true)
import("../svg/v2_screw_holes.svg");
}
}
}
}
// Hexagonal screw hole
color("green") {
rotate([0,0,150]) {
translate ([0,-13,42]) {
union() {
rotate([90,90,0]) {
DIN931("M5");
}
translate ([0,3,0]) {
rotate([90,90,0]) {
DIN931("M5");
}
}
}
}
}
}
}

View File

@@ -0,0 +1,27 @@
$fn = 128;
include </home/julien/.local/share/OpenSCAD/libraries/boltsos_0.4.1/BOLTS.scad>
// Reduc 20x16
difference() {
rotate_extrude(angle=360, convexity=10)
import("../svg/reduc_20x16.svg");
// Hexagonal screw hole
color("green") {
rotate([0,0,150]) {
translate ([0,-12,30]) {
union() {
rotate([90,90,0]) {
DIN931("M5");
}
translate ([0,3,0]) {
rotate([90,90,0]) {
DIN931("M5");
}
}
}
}
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="21.946463mm"
height="21.5005mm"
viewBox="0 0 21.946463 21.5005"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="base_ring.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.4378367"
inkscape:cx="40.686122"
inkscape:cy="40.686122"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-94.191667,-137.84792)">
<path
id="rect6"
style="opacity:0.5;fill:#000080;stroke-width:1.74986;stroke-linecap:round"
d="m 105.38788,137.84792 a 10.75,10.75 0 0 0 -8.402073,4.08038 c -0.17818,-0.22897 -0.45556,-0.37621 -0.76946,-0.37621 h -1.04903 c -0.54038,0 -0.97565,0.43476 -0.97565,0.97514 v 12.04939 c 0,0.54038 0.43527,0.97513 0.97565,0.97513 h 1.04903 c 0.29336,0 0.55477,-0.12859 0.73329,-0.33228 a 10.75,10.75 0 0 0 8.438243,4.12895 10.75,10.75 0 0 0 10.75025,-10.75025 10.75,10.75 0 0 0 -10.75025,-10.75025 z m 0,2.50011 a 8.25,8.25 0 0 1 8.25014,8.25014 8.25,8.25 0 0 1 -8.25014,8.25015 8.25,8.25 0 0 1 -8.196403,-7.56905 v -1.36271 a 8.25,8.25 0 0 1 8.196403,-7.56853 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="66.894806mm"
height="66.159561mm"
viewBox="0 0 66.894806 66.159561"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="center.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.6136651"
inkscape:cx="117.43453"
inkscape:cy="59.801752"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-117.475,-57.41458)">
<path
id="path4"
style="fill:#00ffff;stroke-width:1.21302;stroke-linecap:square"
d="M 109.29979 87.931064 C 107.17094 87.931076 104.92798 89.644355 104.92796 91.773206 C 104.92796 91.773206 104.5491 108.40735 101.18969 114.2261 C 97.830221 120.04496 83.613501 128.68982 83.613501 128.68982 C 82.461233 129.35509 81.784326 130.51902 81.698372 131.74854 C 81.646792 132.48626 82.072819 133.70662 82.471969 134.39799 L 82.485921 134.42228 L 100.8171 123.83843 L 108.91738 137.86807 L 90.586202 148.45192 L 90.599638 148.47569 C 91.664088 150.31935 94.270396 151.40562 96.11403 150.34121 C 96.11403 150.34121 110.70949 142.35199 117.42849 142.35203 C 124.14739 142.35206 138.74192 150.34069 138.74192 150.34069 C 139.89418 151.00598 141.34387 150.83176 142.52928 150.15724 L 142.52928 150.15672 C 143.24052 149.75197 143.85716 149.16758 144.25631 148.47621 L 144.29352 148.41109 L 126.03313 137.86807 L 134.1329 123.83792 L 152.39173 134.38042 C 153.44447 132.53662 153.07952 129.75106 151.24141 128.68982 C 151.24141 128.68982 137.02522 120.04489 133.66574 114.2261 C 130.30626 108.40731 129.92799 91.773723 129.92799 91.773723 C 129.92799 91.108464 129.76058 90.4838 129.46548 89.93921 C 129.22303 89.491881 128.82055 89.098682 128.33532 88.781658 L 128.3348 88.781141 C 127.52611 88.252778 126.48683 87.936377 125.57425 87.932097 L 125.57476 108.9427 L 109.37472 108.9427 L 109.37524 87.931064 L 109.29979 87.931064 z M 117.475 113.07423 A 10.5 10.5 0 0 1 127.97513 123.57437 A 10.5 10.5 0 0 1 117.475 134.07398 A 10.5 10.5 0 0 1 106.97487 123.57437 A 10.5 10.5 0 0 1 117.475 113.07423 z " />
<path
id="path1-2-2"
style="fill:#2b0000;stroke-width:1.70256;stroke-linecap:square"
d="m 79.054276,155.86339 c 1.493985,2.58766 5.019401,4.0921 7.783103,2.95631 10.41409,-4.27984 20.006201,-13.01563 30.569581,-13.02412 10.60549,-0.009 20.42069,8.3322 30.70581,13.02443 2.76369,1.13579 6.28879,-0.36865 7.78276,-2.95629 l 0.28606,-0.49572 -17.34294,-10.01319 c -0.37577,-0.21695 -0.5043,-0.69347 -0.28736,-1.06927 l 7.39817,-12.81441 c 0.21693,-0.37576 0.69445,-0.50371 1.07025,-0.28674 l 17.34361,10.01337 0.28586,-0.495 c 1.49399,-2.58765 1.03371,-6.39315 -1.33175,-8.21867 -8.91347,-6.87892 -21.2748,-10.81788 -26.56387,-19.96167 -5.3105,-9.18004 -2.9946,-21.85059 -4.07356,-33.103946 -0.39825,-2.96133 -3.46377,-5.262671 -6.45173,-5.262679 l -0.57208,2.98e-4 -2.3e-4,20.026272 c -10e-6,0.433888 -0.34877,0.783692 -0.78273,0.783659 l -14.79671,-2.01e-4 c -0.43395,3.2e-5 -0.78343,-0.349549 -0.78348,-0.783429 l 2.5e-4,-20.02625 -0.57162,5.2e-5 c -2.98797,-10e-7 -6.05339,2.300617 -6.45161,5.261928 -1.5006,11.158859 0.21079,22.775736 -5.063556,31.928336 -5.294896,9.18903 -16.367793,14.57685 -25.573872,21.13783 -2.36547,1.82557 -2.825277,5.6309 -1.331311,8.21854 l 0.286018,0.49544 17.343184,-10.0131 c 0.375777,-0.21696 0.852695,-0.0899 1.069635,0.28586 l 7.398518,12.81459 c 0.216952,0.37579 0.0888,0.85277 -0.287016,1.06971 l -17.343154,10.0131 z m 29.089434,-26.90184 c -2.97557,-5.15359 -1.20989,-11.74358 3.94397,-14.71899 5.15366,-2.97531 11.74329,-1.20936 14.71852,3.94419 2.97549,5.1534 1.21006,11.74319 -3.94349,14.71874 -5.15369,2.97566 -11.74365,1.20979 -14.719,-3.94394 z"
sodipodi:nodetypes="scccccccccccscccccccccccscscsssscsccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="220mm"
height="220mm"
viewBox="0 0 220 220"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="center_blocker.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="0.97053977"
inkscape:cx="415.23285"
inkscape:cy="119.00594"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-117.475,96.425859)">
<path
id="path3"
style="fill:#d40000;stroke:none;stroke-width:0.854983;stroke-linecap:square"
d="m 175.47512,88.839823 c -8.28417,-7e-5 -14.9999,6.71544 -15.00012,14.999597 0.0118,4.92983 2.44201,9.51022 6.45077,12.28969 0.33868,0.23482 1.04955,0.77775 1.04955,1.19424 v 6.25078 h 6.74997 v -11.40705 a 8.3968706,8.3968706 0 0 1 -7.64707,-8.34316 8.3968706,8.3968706 0 0 1 8.3969,-8.396897 8.3968706,8.3968706 0 0 1 8.3969,8.396897 8.3968706,8.3968706 0 0 1 -7.64707,8.36176 v 11.38845 h 6.74997 v -6.26266 c 0,-0.45612 0.77712,-1.00158 1.14567,-1.26142 3.94793,-2.78337 6.33909,-7.32468 6.35465,-12.21063 -2.3e-4,-8.284157 -6.71597,-14.999667 -15.00012,-14.999597 z" />
<path
id="path1-6"
style="fill:#550000;stroke:none;stroke-width:0.854983;stroke-linecap:square"
d="m 175.47512,88.839823 c -8.28416,-7e-5 -14.9999,6.71544 -15.00012,14.999597 0.0118,4.92983 2.44201,9.51022 6.45077,12.28969 0.33868,0.23482 1.04955,0.77775 1.04955,1.19424 v 6.25078 h 6.74997 v -9.50329 a 10.3,10.3 0 0 1 -9.55032,-10.2309 10.3,10.3 0 0 1 10.30015,-10.300147 10.3,10.3 0 0 1 10.30015,10.300147 10.3,10.3 0 0 1 -9.55032,10.2309 v 9.50329 h 6.74997 v -6.26266 c 0,-0.45612 0.77712,-1.00158 1.14567,-1.26142 3.94793,-2.78337 6.3391,-7.32468 6.35465,-12.21063 -2.2e-4,-8.284157 -6.71596,-14.999667 -15.00012,-14.999597 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="66.894806mm"
height="66.159561mm"
viewBox="0 0 66.894806 66.159561"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="center_bottom.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.8107225"
inkscape:cx="-0.27613287"
inkscape:cy="80.354665"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-117.475,-57.41458)">
<path
id="path1-2-2"
style="fill:#280b0b;stroke-width:1.21302;stroke-linecap:square"
d="m 148.36865,135.05984 c 1.04238,-1.84492 0.61974,-4.955 -1.06086,-6.25198 -2.56175,-1.97705 -6.84059,-3.74729 -8.84389,-6.07389 -4.41112,-5.12288 -7.673,-10.71417 -9.87588,-17.10552 -0.97851,-2.8391 -0.42894,-6.838247 -0.7301,-9.979367 -0.28291,-2.103911 -2.7641,-4.554009 -4.88301,-4.573758 l -1.3e-4,14.960585 c -3e-5,0.28683 -0.096,0.54889 -0.25346,0.76246 -0.10802,0.2985 -0.38418,0.51383 -0.71897,0.52294 -0.004,-2.7e-4 -0.007,0.002 -0.0113,0.002 l -0.009,8.3e-4 -0.29355,-4e-5 -8.42549,-6e-5 -0.29356,-4e-5 -0.0103,-1.7e-4 c -0.004,-2.7e-4 -0.007,-0.002 -0.0102,-0.002 -0.3348,-0.009 -0.61069,-0.225 -0.71872,-0.52349 -0.15738,-0.21357 -0.25356,-0.47598 -0.25358,-0.76279 l -0.002,-14.959768 c -2.11892,0.01974 -4.6002,2.47027 -4.88311,4.574177 -0.43125,3.206914 0.17485,7.268361 -0.83825,10.166441 -2.23105,6.3822 -5.4427,12.00363 -9.876925,17.10732 -1.969244,2.26657 -5.706834,3.78919 -8.276223,5.62032 -1.680571,1.29698 -2.561712,4.67136 -1.519352,6.51626 l 12.956403,-7.48015 c 0.24841,-0.14342 0.523037,-0.19112 0.786667,-0.16161 0.31255,-0.0558 0.63746,0.0753 0.81279,0.36061 0.002,0.003 0.005,0.005 0.007,0.009 l 0.005,0.009 0.1468,0.25422 4.2128,7.29664 0.14701,0.25492 0.005,0.007 c 0.002,0.003 0.001,0.008 0.002,0.0104 0.15895,0.29332 0.11127,0.63867 -0.0911,0.88126 -0.10595,0.24492 -0.28492,0.46049 -0.53476,0.60481 l -12.955722,7.48067 c 1.076927,1.82463 4.439411,2.74836 6.402753,1.94149 2.992869,-1.22997 6.207109,-3.78575 9.223439,-4.35739 6.64247,-1.25886 13.11581,-1.28766 19.75266,4.9e-4 2.94777,0.57217 6.59369,3.31209 9.46447,4.62178 1.96334,0.80688 4.86763,-0.38217 5.94455,-2.20682 l -12.95558,-7.4799 c -0.2484,-0.14341 -0.42725,-0.35729 -0.53351,-0.60039 -0.20468,-0.24291 -0.25374,-0.59029 -0.0941,-0.88498 0.002,-0.003 0.001,-0.006 0.003,-0.01 l 0.005,-0.009 0.14702,-0.25465 4.35898,-7.55099 0.006,-0.009 c 0.002,-0.003 0.005,-0.005 0.006,-0.008 0.175,-0.28512 0.49976,-0.41592 0.81202,-0.36062 0.26434,-0.0301 0.53974,0.0175 0.78884,0.16127 z m -22.01134,-5.43021 c -0.90963,1.33446 -2.10823,2.44682 -3.50677,3.25445 -5.1418,2.96904 -11.71695,1.20734 -14.68552,-3.93476 -2.96879,-5.14186 -1.20689,-11.71686 3.9352,-14.68526 1.39874,-0.80735 2.96143,-1.28917 4.57194,-1.40966 4.11789,-0.30848 8.04849,1.76905 10.11306,5.34531 2.0643,3.57598 1.89799,8.0183 -0.42791,11.42992 z"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccsccccsccsccccccscccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="13.25mm"
height="7mm"
viewBox="0 0 13.25 7"
version="1.1"
id="svg1"
xml:space="preserve"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="center_top.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showguides="true"
inkscape:zoom="20.308019"
inkscape:cx="25.03937"
inkscape:cy="13.221378"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs1" /><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-68.53375,-31.060562)"><path
id="path1"
style="fill:#ff00ff;stroke-width:1.9833;stroke-linecap:square"
d="m 68.53375,31.060562 v 7 h 13.25 v -2.41e-4 c 0,-0.07719 -0.08305,-0.445035 -0.25,-0.499759 -2.617076,-0.857848 -9.133799,-6.5 -13,-6.5 z"
sodipodi:nodetypes="cccssc" /></g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="66.894806mm"
height="66.159561mm"
viewBox="0 0 66.894806 66.159561"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="center_tube17.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.1410335"
inkscape:cx="36.370535"
inkscape:cy="115.24639"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-117.475,-57.41458)">
<path
id="path1-2-2"
style="fill:#2b0000;stroke-width:1.70256;stroke-linecap:square"
d="M 127.2868 74.155677 L 126.47497 74.156194 L 126.47497 94.182362 C 126.47496 94.61627 125.30695 94.965797 124.873 94.965776 L 110.07649 94.965776 C 109.64253 94.965796 108.47505 94.61628 108.47503 94.182362 L 108.47503 74.156194 L 107.6632 74.156194 C 104.67522 74.156199 104.78514 79.102401 104.38691 82.063721 C 102.88632 93.222593 105.37214 104.31076 100.09777 113.46336 C 94.802867 122.65239 84.188579 126.43345 74.982503 132.99446 C 72.617026 134.81999 68.277997 137.19865 69.771969 139.7863 L 70.177629 140.4891 L 87.520756 130.47575 C 87.896531 130.25879 88.783298 131.09524 89.000252 131.47104 L 96.398767 144.28576 C 96.615722 144.66155 96.896506 145.84751 96.520723 146.06447 L 79.177596 156.07729 L 79.583256 156.78009 C 81.077249 159.36776 85.306903 156.79971 88.070593 155.66388 C 98.48468 151.38404 106.8434 143.68758 117.40679 143.67908 C 128.01228 143.67008 136.5948 150.97165 146.87992 155.66388 C 149.64361 156.79967 153.87225 159.36773 155.36623 156.78009 L 155.77189 156.07729 L 138.42928 146.06395 C 138.05351 145.84699 138.33424 144.66153 138.55123 144.28576 L 145.94923 131.47104 C 146.16618 131.09527 147.05294 130.25879 147.42873 130.47575 L 164.77237 140.4891 L 165.17855 139.7863 C 166.67254 137.19863 162.33296 134.82 159.9675 132.99446 C 151.05404 126.11558 140.2095 122.72445 134.92045 113.58066 C 129.60995 104.4006 131.64206 93.317601 130.56309 82.064238 C 130.16486 79.102918 130.27476 74.155677 127.2868 74.155677 z M 117.475 114.5744 A 9 9 0 0 1 126.47497 123.57437 A 9 9 0 0 1 117.475 132.57433 A 9 9 0 0 1 108.47503 123.57437 A 9 9 0 0 1 117.475 114.5744 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="16.000055mm"
height="25mm"
viewBox="0 0 16.000055 25.000001"
version="1.1"
id="svg1"
xml:space="preserve"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="closure_ext.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="4.0668163"
inkscape:cx="82.865803"
inkscape:cy="57.41592"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs1" /><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-91.568885,-128.28435)"><path
id="circle1"
style="fill:#ff0000;stroke-width:1.24216;stroke-linecap:round"
d="m 95.42498,128.46169 c -0.489942,-0.0319 -1.00003,0.44021 -0.920357,0.89142 0.156658,0.88722 1.539001,0.58595 2.433443,0.555 2.485463,-0.0427 4.661434,1.40663 4.723744,3.29799 0.13602,1.07725 -0.19843,3.28556 -2.322916,3.57215 -4.378617,0.59067 -7.770009,4.08779 -7.770009,8.50607 0,4.41828 3.58175,8.00003 8.000028,8.00003 4.418277,0 8.000027,-3.58175 8.000027,-8.00003 0,-3.05222 -2.98852,-4.68599 -3.67096,-7.23733 -0.50887,-1.90245 0.18171,-5.62863 1.03557,-6.70274 1.24703,-1.56869 2.80429,-3.38763 2.04801,-2.96566 -2.54785,1.4216 -11.55658,0.0831 -11.55658,0.0831 z m 4.143933,14.32252 c 1.380797,-6e-5 2.500167,1.11931 2.500107,2.50011 6e-5,1.38079 -1.11931,2.50016 -2.500107,2.5001 -1.38059,-2.3e-4 -2.499644,-1.11951 -2.499589,-2.5001 -6.1e-5,-1.38059 1.118995,-2.49988 2.499589,-2.50011 z"
sodipodi:nodetypes="ssccssssssssccccc" /></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="16.000055mm"
height="25mm"
viewBox="0 0 16.000055 25.000001"
version="1.1"
id="svg1"
xml:space="preserve"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="closure_hole.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="4.0668163"
inkscape:cx="82.865803"
inkscape:cy="57.170028"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs1" /><g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-91.568885,-128.28435)"><rect
style="opacity:1;fill:#000080;stroke-width:1.70447;stroke-linecap:round"
id="rect9"
width="18.712872"
height="7"
x="-0.70993966"
y="172.50044"
ry="1.1782178"
inkscape:transform-center-x="-5.0438316"
transform="rotate(-33.527167)"
inkscape:transform-center-y="-3.3418895" /></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="79.999771mm"
height="102.88364mm"
viewBox="0 0 79.999771 102.88364"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="holder.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.0753422"
inkscape:cx="150.57758"
inkscape:cy="226.7096"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(65.0875,85.460418)">
<path
id="path1-7-7"
style="fill:#2b0000;stroke:none;stroke-width:0;stroke-linecap:square;stroke-dasharray:none"
d="m -25.087873,-85.460427 c -6.903567,-1e-5 -12.50002,5.59644 -12.50001,12.50001 0.02305,7.880109 5.397952,7.895266 1.611788,10.331157 -17.01745,4.800045 -29.099071,21.979686 -29.111401,40.052336 -8e-5,22.09129727 17.908326,39.999947 39.999623,40.000147 22.0915001,8e-5 40.00022,-17.90864973 40.00014,-40.000147 -0.003,-18.106673 -12.1224699,-35.320132 -29.19305,-40.096261 -3.48849,-2.505762 1.69032,-2.434192 1.69292,-10.287232 10e-6,-6.90356 -5.59644,-12.50001 -12.50001,-12.50001 z m 0,4.00027 a 8.5,8.5 0 0 1 8.50026,8.49974 8.5,8.5 0 0 1 -8.50026,8.500261 8.5,8.5 0 0 1 -8.499737,-8.500261 8.5,8.5 0 0 1 8.499737,-8.49974 z m -0.81287,20.94188 c 0.27026,0.02812 0.54136,0.04742 0.81287,0.05788 0.33687,-10e-4 0.67356,-0.0157 1.00924,-0.04393 20.5635901,0.546174 36.95898,17.356581 36.99103,37.927401 1.5e-4,20.9870393 -17.0132399,38.000409 -38.00027,38.000269 -20.986827,-1.4e-4 -37.999895,-17.0134297 -37.999745,-38.000267 0.0271,-20.65053 16.541058,-37.499493 37.186875,-37.941353 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="220mm"
height="220mm"
viewBox="0 0 220 220"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="holder_square.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.9410795"
inkscape:cx="164.34154"
inkscape:cy="102.77786"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(82.005836,156.06025)">
<path
id="path1-6"
style="fill:#2b0000;stroke:none;stroke-width:0.854983;stroke-linecap:square"
d="m -24.005759,29.205428 c -8.28416,-7e-5 -14.999898,6.715441 -15.000118,14.999601 0.0118,4.92983 2.442009,9.510219 6.450769,12.289689 0.33868,0.23482 1.049549,0.777753 1.049549,1.194243 v 6.250781 h 6.749975 v -9.503296 a 10.3,10.3 0 0 1 -9.550321,-10.2309 10.3,10.3 0 0 1 10.300146,-10.300146 10.3,10.3 0 0 1 10.300147,10.300146 10.3,10.3 0 0 1 -9.550322,10.2309 v 9.503296 h 6.749976 v -6.262667 c 0,-0.45612 0.777116,-1.001582 1.145666,-1.261422 3.94793,-2.78337 6.3391013,-7.324674 6.3546513,-12.210624 -2.2e-4,-8.28416 -6.7159583,-14.999671 -15.0001183,-14.999601 z" />
<path
id="path3"
style="fill:#aa0000;stroke:none;stroke-width:0.854983;stroke-linecap:square"
d="m -24.005759,29.205428 c -8.28416,-7e-5 -14.999898,6.715441 -15.000118,14.999601 0.0118,4.92983 2.442009,9.510219 6.450769,12.289689 0.33868,0.23482 1.049549,0.777753 1.049549,1.194243 v 6.250781 h 6.749975 V 52.532686 a 8.3968706,8.3968706 0 0 1 -7.647078,-8.34316 8.3968706,8.3968706 0 0 1 8.396903,-8.396903 8.3968706,8.3968706 0 0 1 8.396904,8.396903 8.3968706,8.3968706 0 0 1 -7.647079,8.361764 v 11.388452 h 6.749976 v -6.262667 c 0,-0.45612 0.777116,-1.001582 1.145666,-1.261422 3.94793,-2.78337 6.3391013,-7.324674 6.3546513,-12.210624 -2.2e-4,-8.28416 -6.7159583,-14.999671 -15.0001183,-14.999601 z" />
<path
id="path1-6-5"
style="fill:#ff2a2a;stroke:none;stroke-width:0.854983;stroke-linecap:square"
d="m -79.301092,-87.710433 c -1.498266,0 -2.704744,1.206478 -2.704744,2.704744 V 29.2354 c 0,1.498265 1.206499,2.704081 4.649845,4.547526 1.721673,0.921722 21.529847,1.008227 31.015678,6.478158 4.329472,2.496556 6.7761,6.171355 8.530229,9.761678 1.095188,2.582092 2.899632,4.839397 5.254976,6.472473 0.33868,0.23482 1.049549,0.777752 1.049549,1.194242 v 6.250265 h 6.749975 v -9.280054 c -5.203835,-0.404791 -9.760066,-5.223424 -9.779248,-10.453625 -2.4e-4,-5.52298 5.006093,-10.52954 10.529073,-10.52959 5.52298,5e-5 10.529313,5.00661 10.529073,10.52959 -0.01919,5.230201 -4.575413,10.048834 -9.779248,10.453625 v 9.280054 h 6.749976 v -6.26215 c 0,-0.45612 0.777116,-1.001582 1.145666,-1.261422 2.722075,-1.919117 4.703174,-4.674322 5.6766565,-7.801591 1.5015153,-3.22178 3.3666369,-6.180476 7.3365031,-8.353495 C 7.2580839,35.003396 27.623305,34.70465 29.34499,33.782926 32.78835,31.939478 33.994319,30.733665 33.994319,29.2354 V -85.005689 c 0,-1.498266 -1.205969,-2.704744 -2.704228,-2.704744 z m 2.458765,3.000334 H 28.83081 c 1.19861,0 2.163692,0.964562 2.163692,2.163175 V 26.776119 c 0,1.198613 -0.965082,2.163692 -2.163692,2.163692 H -76.842327 c -1.198612,0 -2.163175,-0.965079 -2.163175,-2.163692 V -82.546924 c 0,-1.198613 0.964563,-2.163175 2.163175,-2.163175 z"
sodipodi:nodetypes="ssssscsscccccccccsccsssssssssssssss" />
<circle
style="fill:#00ffff;stroke-width:0.528607;stroke-linecap:round"
id="path1"
cx="-24.005836"
cy="44.189743"
r="10.317225" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="150mm"
height="16.000057mm"
viewBox="0 0 150 16.000057"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="leg.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.3054643"
inkscape:cx="170.05444"
inkscape:cy="30.257435"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-20.000077)">
<path
id="rect1"
style="fill:#6c5353;stroke-width:0.461664;stroke-linecap:square;stroke-dasharray:3.69333, 0.923335, 0.461664, 0.923335"
d="M 28.000105 0 C 23.568105 0 20.000077 3.5680285 20.000077 8.0000285 C 20.000077 12.432028 23.568105 16.000057 28.000105 16.000057 L 88.000061 16.000057 L 101.99972 16.000057 L 162.0002 16.000057 C 166.4322 16.000057 170.00022 12.432028 170.00022 8.0000285 C 170.00022 3.5680285 166.4322 0 162.0002 0 L 101.99972 0 L 88.000061 0 L 28.000105 0 z M 28.000105 5.0002116 C 29.656816 5.0003129 30.99982 6.3433174 30.999922 8.0000285 C 30.99982 9.6567394 29.656816 10.999744 28.000105 10.999845 C 26.343394 10.999744 25.00039 9.6567396 25.000289 8.0000285 C 25.00039 6.3433173 26.343394 5.0003127 28.000105 5.0002116 z M 162.0002 5.0002116 C 163.65691 5.0003165 164.99991 6.34332 165.00001 8.0000285 C 164.99991 9.6567369 163.65691 10.99974 162.0002 10.999845 C 160.34349 10.999746 159.00048 9.6567408 159.00038 8.0000285 C 159.00048 6.343316 160.34349 5.000311 162.0002 5.0002116 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="20mm"
height="44.999836mm"
viewBox="0 0 20 44.999836"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="leg_top.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="3.7182258"
inkscape:cx="15.867783"
inkscape:cy="85.121243"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-32.499813,14.49989)">
<path
id="path1"
style="fill:#0000ff;stroke-width:1.37295;stroke-linecap:round"
d="M 32.499813,-14.49989 V 7.9999472 c 8.432781,0 8.250142,4.6166658 8.250142,4.6166658 v 17.883334 h 2.749858 V -4.4999836 c -5.2e-5,-5.5227744 -5.477226,-9.9998544 -11,-9.9999064 z"
sodipodi:nodetypes="ccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="58.13081mm"
height="50.343182mm"
viewBox="0 0 58.13081 50.343182"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="marks.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.0334082"
inkscape:cx="9.8357036"
inkscape:cy="62.702611"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-102.39375,-150.01875)">
<path
style="fill:#1a1a1a;stroke-width:1.42704;stroke-linecap:square"
d="m 117.9592,195.36223 v 4.9997 h 26.99991 v -4.9997 z"
id="path19" />
<path
style="fill:#1a1a1a;stroke-width:1.42704;stroke-linecap:square"
d="m 147.02461,150.01875 -4.32997,2.5001 13.49996,23.38256 4.32996,-2.49959 z"
id="path18" />
<path
style="fill:#1a1a1a;stroke-width:1.42704;stroke-linecap:square"
d="m 115.8937,150.01875 -13.49995,23.38307 4.32996,2.49959 13.49995,-23.38256 z"
id="rect3-9" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="90.000191mm"
height="10.000013mm"
viewBox="0 0 90.00019 10.000013"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="plate.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.8756735"
inkscape:cx="174.74167"
inkscape:cy="-8.8674879"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showgrid="false" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-59.999957,-46.999337)">
<path
id="rect1"
style="fill:#6c5353;fill-opacity:1;stroke-width:0.24301;stroke-linecap:square;stroke-dasharray:1.94409, 0.486019, 0.24301, 0.486019"
d="M 62.550706 46.999337 C 61.137698 46.999337 59.999957 48.137078 59.999957 49.550086 L 59.999957 50.546407 L 59.999957 52.177316 L 59.999957 52.708549 C 59.999957 52.732819 60.007542 52.755316 60.008742 52.779346 C 60.007642 52.799306 59.999957 52.818147 59.999957 52.838257 L 59.999957 54.175643 C 59.999957 55.070143 60.949082 55.726978 62.121275 55.790532 C 76.331986 56.561021 90.706875 56.999243 104.99979 56.999243 C 119.29272 56.999243 133.66812 56.561021 147.87883 55.790532 C 149.05102 55.726972 150.00015 55.070143 150.00015 54.175643 L 150.00015 52.838257 C 150.00015 52.817067 149.9934 52.797235 149.9924 52.776245 C 149.9934 52.753225 150.00015 52.731789 150.00015 52.708549 L 150.00015 52.177316 L 150.00015 50.545891 L 150.00015 49.550086 C 150.00015 48.137078 148.86241 46.999337 147.4494 46.999337 L 62.550706 46.999337 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="44.999836mm"
height="30mm"
viewBox="0 0 44.999836 29.999999"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="plate_base.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="4.0668164"
inkscape:cx="44.383612"
inkscape:cy="73.644829"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-15.000118,-129.08335)">
<path
id="path1"
style="fill:#0000ff;stroke-width:1.37295;stroke-linecap:round"
d="M 15.000118 129.08335 L 15.000118 129.37532 L 15.000118 136.43742 L 15.000118 136.58315 C 23.432899 136.58315 23.25026 141.19992 23.25026 141.19992 L 23.25026 159.08359 L 23.500891 159.08359 L 25.999963 159.08359 L 26.710514 159.08359 C 26.710514 159.08359 27.118071 159.03514 27.435018 158.75854 C 27.751964 158.48194 27.733079 158.23737 27.859281 157.81441 C 31.060546 147.08553 38.448901 136.53279 53.824622 133.09551 C 57.927046 132.1784 58.942806 130.65251 59.999955 129.08335 L 15.000118 129.08335 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="60mm"
height="60mm"
viewBox="0 0 60 60"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="reduc_16x12.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="4.0668164"
inkscape:cx="15.614179"
inkscape:cy="91.840881"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-101.33542,-118.53333)">
<path
id="rect1"
style="opacity:1;fill:#ff00ff;stroke-width:1.5282;stroke-linecap:square"
d="M 107.83528 138.53314 L 107.83528 158.53347 L 108.21045 158.53347 L 109.38557 158.53347 L 109.83568 158.53347 L 109.83568 178.53329 L 116.33554 178.53329 L 116.33554 138.53314 L 107.83528 138.53314 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="60mm"
height="60mm"
viewBox="0 0 60 60"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="reduc_20x16.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="5.7513469"
inkscape:cx="16.257061"
inkscape:cy="88.935689"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-101.33542,-118.53333)">
<path
id="rect1"
style="opacity:1;fill:#ff00ff;stroke-width:1.5282;stroke-linecap:square"
d="M 109.93541 138.53314 L 109.93541 158.53347 L 111.20614 158.53347 L 111.58544 158.53347 L 111.58544 178.53329 L 116.33554 178.53329 L 116.33554 138.53314 L 109.93541 138.53314 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="25.000019mm"
height="42mm"
viewBox="0 0 25.000019 42"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="ring.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.8756734"
inkscape:cx="47.814887"
inkscape:cy="91.630712"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-180.43548,-93.07715)">
<path
id="path1-2-2"
style="fill:#2b0000;stroke-width:1.21302;stroke-linecap:square"
d="M 192.93549 93.07715 C 186.03192 93.077139 180.43547 98.673585 180.43548 105.57716 C 180.98961 114.07232 182.47319 120.98563 183.61048 129.44289 C 183.8942 131.55274 185.3243 135.07717 187.45314 135.07717 L 187.86035 135.07717 L 187.86035 119.3851 C 187.86035 119.07595 188.10931 118.827 188.41846 118.827 L 197.45253 118.827 C 197.76168 118.827 198.01012 119.07595 198.01012 119.3851 L 198.01012 135.07717 L 198.41784 135.07717 C 200.54667 135.07717 201.97678 131.55274 202.2605 129.44289 C 203.07479 120.95009 205.11801 114.08256 205.4355 105.57716 C 205.43551 98.673592 199.83906 93.07715 192.93549 93.07715 z M 192.93549 96.97717 A 8.6 8.6 0 0 1 201.53548 105.57716 A 8.6 8.6 0 0 1 192.93549 114.17715 A 8.6 8.6 0 0 1 184.3355 105.57716 A 8.6 8.6 0 0 1 192.93549 96.97717 z " />
<g
id="g1"
transform="matrix(0.688,0,0,0.688,60.195872,32.94007)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="29.999996mm"
height="29.999996mm"
viewBox="0 0 29.999996 29.999996"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="screw.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="4.0668163"
inkscape:cx="67.743409"
inkscape:cy="33.810231"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-86.872867,-27.429933)">
<path
id="path3"
style="fill:#00ff00;stroke-width:2.75772;stroke-linecap:square"
d="m 97.705989,27.429931 a 15.578431,15.58847 0 0 0 -3.450929,1.467187 5.1928104,5.1961568 0 0 1 -1.459802,4.455265 5.1928104,5.1961568 0 0 1 -4.434684,1.421001 15.578431,15.58847 0 0 0 -1.478586,3.445634 5.1928104,5.1961568 0 0 1 2.155891,4.211987 5.1928104,5.1961568 0 0 1 -2.165015,4.168486 15.578431,15.58847 0 0 0 1.489857,3.487523 5.1928104,5.1961568 0 0 1 4.433074,1.422076 5.1928104,5.1961568 0 0 1 1.459801,4.452042 15.578431,15.58847 0 0 0 3.450929,1.468799 5.1928104,5.1961568 0 0 1 4.162055,-2.160503 5.1928104,5.1961568 0 0 1 4.1615,2.160503 15.578431,15.58847 0 0 0 3.48958,-1.488669 5.1928104,5.1961568 0 0 1 1.42115,-4.432172 5.1928104,5.1961568 0 0 1 4.43307,-1.421539 15.578431,15.58847 0 0 0 1.4904,-3.48806 5.1928104,5.1961568 0 0 1 -2.16556,-4.168486 5.1928104,5.1961568 0 0 1 2.17415,-4.176006 15.578431,15.58847 0 0 0 -1.48825,-3.482688 5.1928104,5.1961568 0 0 1 -4.44327,-1.419928 5.1928104,5.1961568 0 0 1 -1.42063,-4.439154 15.578431,15.58847 0 0 0 -3.44663,-1.475243 5.1928104,5.1961568 0 0 1 -4.20551,2.153521 5.1928104,5.1961568 0 0 1 -4.162591,-2.161576 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="60mm"
height="60mm"
viewBox="0 0 59.999999 59.999999"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="screw_hole.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.5163426"
inkscape:cx="113.85572"
inkscape:cy="113.45832"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-117.44927,-63.479601)">
<circle
style="fill:#2b0000;stroke-width:2.15575;stroke-linecap:square"
id="path2"
cx="117.54927"
cy="81.979599"
r="2.7" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="60mm"
height="60mm"
viewBox="0 0 59.999999 59.999999"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="screw_hole_bottom.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.5163426"
inkscape:cx="113.85572"
inkscape:cy="113.45832"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-117.44927,-63.479601)">
<circle
style="fill:#2b0000;stroke-width:2.15575;stroke-linecap:square"
id="path2"
cx="117.44927"
cy="98.979599"
r="2.7" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,186 @@
<?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="tripod_parts.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.0334082"
inkscape:cx="256.95776"
inkscape:cy="868.73852"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showguides="true" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<circle
style="fill:#ff00ff;fill-opacity:0.2;stroke:none;stroke-width:1.71547;stroke-linecap:square"
id="path5"
cx="105"
cy="32.5"
r="12.5" />
<path
id="path1-7-7"
style="fill:#ff00ff;stroke:none;stroke-width:0;stroke-linecap:square;stroke-dasharray:none"
d="M 104.99979 19.999813 C 98.096223 19.999802 92.49977 25.596253 92.49978 32.499825 C 92.52283 40.379929 97.897732 40.395086 94.111568 42.830977 C 77.094118 47.631022 65.012497 64.810663 65.000167 82.883313 C 65.000087 104.97461 82.908493 122.88326 104.99979 122.88346 C 127.09129 122.88354 145.00001 104.97481 144.99993 82.883313 C 144.99693 64.77664 132.87746 47.563181 115.80688 42.787052 C 112.31839 40.28129 117.4972 40.35286 117.4998 32.499825 C 117.49981 25.596257 111.90336 19.999807 104.99979 19.999813 z M 104.99979 24.000085 A 8.5 8.5 0 0 1 113.50005 32.499825 A 8.5 8.5 0 0 1 104.99979 41.000081 A 8.5 8.5 0 0 1 96.500053 32.499825 A 8.5 8.5 0 0 1 104.99979 24.000085 z M 104.18692 44.94196 C 104.45718 44.97008 104.72828 44.989377 104.99979 44.999837 C 105.33666 44.998837 105.67335 44.984142 106.00903 44.955912 C 126.57262 45.502086 142.96801 62.312493 143.00006 82.883313 C 143.00021 103.87035 125.98682 120.88372 104.99979 120.88358 C 84.012963 120.88344 66.999895 103.87015 67.000045 82.883313 C 67.027145 62.232783 83.541103 45.38382 104.18692 44.94196 z " />
<circle
style="fill:#ff00ff;fill-opacity:0.2;stroke:none;stroke-width:3.12768;stroke-linecap:square"
id="path2"
cx="105"
cy="82.883636"
r="40" />
<path
id="path4"
style="fill:#00ffff;stroke:none;stroke-width:1.21302;stroke-linecap:square"
d="m 120.86562,132.41869 c -2.12884,0 -3.84266,1.71383 -3.84266,3.84266 0,0 -0.37873,13.98877 -3.73827,19.80758 -3.35949,5.81872 -15.284339,13.14028 -15.284339,13.14028 -1.843631,1.06441 -2.471053,3.40566 -1.406633,5.24929 l 0.203605,0.35295 16.621207,-9.59579 c 0.26773,-0.15458 0.60765,-0.0641 0.76223,0.2036 l 7.69203,13.32322 c 0.15457,0.26774 0.0631,0.60766 -0.20463,0.76223 l -16.62069,9.59631 0.2036,0.35243 c 1.06442,1.84363 3.40566,2.47106 5.24929,1.40664 0,0 12.30365,-6.66626 19.02261,-6.66626 6.71896,0 19.02261,6.66626 19.02261,6.66626 0.57613,0.33263 1.20089,0.50003 1.82005,0.51676 1.36215,0.0368 2.69745,-0.65591 3.42924,-1.9234 l 0.20361,-0.35295 -16.62069,-9.59631 c -0.26774,-0.15458 -0.35922,-0.49397 -0.20464,-0.76171 l 7.69204,-13.32322 c 0.15457,-0.26777 0.49449,-0.3587 0.76222,-0.20412 l 16.62121,9.59631 0.20361,-0.35295 c 1.06442,-1.84363 0.43699,-4.18488 -1.40664,-5.24929 0,0 -11.92536,-7.32156 -15.28485,-13.14028 -3.35954,-5.81881 -3.73776,-19.80758 -3.73776,-19.80758 0,-2.12883 -1.71383,-3.84266 -3.84266,-3.84266 h -0.40721 v 19.19211 c 0,0.30915 -0.24895,0.55811 -0.5581,0.55811 h -15.38407 c -0.30915,0 -0.55759,-0.24896 -0.55759,-0.55811 v -19.19211 z m 8.65735,24.53235 a 8.5,8.5 0 0 1 8.49974,8.49974 8.5,8.5 0 0 1 -8.49974,8.50026 8.5,8.5 0 0 1 -8.50025,-8.50026 8.5,8.5 0 0 1 8.50025,-8.49974 z" />
<path
id="path1-2"
style="fill:#ffff00;stroke-width:1.21302;stroke-linecap:square"
d="m 59.779639,150.79965 a 12.5,12.5 0 0 0 -12.500014,12.50001 12.5,12.5 0 0 0 0.07648,1.07177 c -0.05028,0.24886 -0.07648,0.5069 -0.07648,0.77102 v 27.3146 c 0,2.12883 1.713826,3.84265 3.84266,3.84265 h 0.40721 v -19.1921 c 0,-0.30916 0.248954,-0.55811 0.558106,-0.55811 h 15.384068 c 0.30915,0 0.55759,0.24895 0.55759,0.55811 v 19.1921 h 0.40773 c 2.12884,0 3.84266,-1.71382 3.84266,-3.84265 v -27.3146 c 0,-0.26377 -0.0269,-0.52143 -0.077,-0.76998 a 12.5,12.5 0 0 0 0.077,-1.07281 12.5,12.5 0 0 0 -12.50001,-12.50001 z m 0,3.97495 a 8.5,8.5 0 0 1 8.50025,8.50026 8.5,8.5 0 0 1 -8.50025,8.49974 8.5,8.5 0 0 1 -8.499741,-8.49974 8.5,8.5 0 0 1 8.499741,-8.50026 z" />
<path
id="path1-2-4"
style="fill:none;fill-opacity:0.521168;stroke:#ffff00;stroke-width:0.5;stroke-linecap:square;stroke-dasharray:none"
d="m 51.122285,130.25 c -2.12884,0 -3.84266,1.71383 -3.84266,3.84266 v 27.31461 c 0,0.26412 0.02618,0.52215 0.07648,0.77102 a 12.5,12.5 0 0 0 -0.07648,1.07176 12.5,12.5 0 0 0 12.500014,12.50002 12.5,12.5 0 0 0 12.50001,-12.50002 12.5,12.5 0 0 0 -0.077,-1.0728 c 0.0501,-0.24855 0.077,-0.50621 0.077,-0.76998 v -27.31461 c 0,-2.12883 -1.71382,-3.84266 -3.84266,-3.84266 h -0.40773 v 19.19211 c 0,0.30915 -0.24844,0.55811 -0.55759,0.55811 H 52.087601 c -0.30915,0 -0.558106,-0.24896 -0.558106,-0.55811 V 130.25 Z m 8.657354,24.5246 a 8.5,8.5 0 0 1 8.50025,8.50026 8.5,8.5 0 0 1 -8.50025,8.49974 8.5,8.5 0 0 1 -8.499741,-8.49974 8.5,8.5 0 0 1 8.499741,-8.50026 z" />
<g
id="g5"
transform="translate(41.839869,126.31234)">
<g
id="g3-4"
transform="rotate(180,105.01887,83.34388)"
style="fill:#6c5353">
<path
id="path1-2-52"
style="fill:#6c5353;stroke-width:1.21302;stroke-linecap:square"
d="m 105.15017,37.500037 a 12.5,12.5 0 0 0 -12.500011,12.500012 12.5,12.5 0 0 0 0.07648,1.071769 c -0.05028,0.248861 -0.07648,0.506895 -0.07648,0.771012 v 27.314612 c 0,2.128834 1.713825,3.84266 3.842659,3.84266 h 0.40721 v -19.19211 c 0,-0.309152 0.248954,-0.558106 0.558106,-0.558106 h 15.384076 c 0.30915,0 0.55759,0.248954 0.55759,0.558106 v 19.19211 h 0.40772 c 2.12884,0 3.84266,-1.713826 3.84266,-3.84266 V 51.84283 c 0,-0.263766 -0.0269,-0.521425 -0.077,-0.769978 a 12.5,12.5 0 0 0 0.077,-1.072803 12.5,12.5 0 0 0 -12.50001,-12.500012 z m 0,4.249869 a 8.25,8.25 0 0 1 8.24963,8.250143 8.25,8.25 0 0 1 -8.24963,8.250142 8.25,8.25 0 0 1 -8.250142,-8.250142 8.25,8.25 0 0 1 8.250142,-8.250143 z" />
<path
id="path1-2-4-5"
style="fill:#6c5353;stroke-width:1.21302;stroke-linecap:square"
d="m 105.15017,62.450065 a 12.5,12.5 0 0 1 -12.50001,-12.500012 12.5,12.5 0 0 1 0.0765,-1.071769 c -0.0503,-0.248861 -0.0765,-0.506895 -0.0765,-0.771012 V 20.79266 c 0,-2.128834 1.71382,-3.84266 3.84266,-3.84266 h 0.40721 v 19.19211 c 0,0.309152 0.24895,0.558106 0.5581,0.558106 h 15.38408 c 0.30915,0 0.55759,-0.248954 0.55759,-0.558106 V 16.95 h 0.40772 c 2.12884,0 3.84266,1.713826 3.84266,3.84266 v 27.314612 c 0,0.263766 -0.0269,0.521425 -0.077,0.769978 a 12.5,12.5 0 0 1 0.077,1.072803 12.5,12.5 0 0 1 -12.50001,12.500012 z m 0,-4.249869 a 8.25,8.25 0 0 0 8.24963,-8.250143 8.25,8.25 0 0 0 -8.24963,-8.250142 8.25,8.25 0 0 0 -8.25014,8.250142 8.25,8.25 0 0 0 8.25014,8.250143 z" />
</g>
<path
id="path3"
style="fill:#c8b7b7;stroke-width:1.59834;stroke-linecap:square"
d="m 95.696582,100.29072 c 8.967988,-5.177678 20.435308,-2.10502 25.612978,6.86297 5.17767,8.96799 2.105,20.43532 -6.86298,25.61298 -8.96799,5.17766 -20.435298,2.10501 -25.612968,-6.86298 -5.17768,-8.96798 -2.10502,-20.4353 6.86297,-25.61297 z"
sodipodi:nodetypes="sssss" />
</g>
<path
id="path1-2-5"
style="fill:#d40000;stroke-width:1.21302;stroke-linecap:square"
d="M 22.50001,37.740702 A 12.5,12.5 0 0 0 10,50.240714 12.5,12.5 0 0 0 10.0765,51.312483 C 10.0262,51.561344 10,51.819378 10,52.083495 v 27.314612 c 0,2.128834 1.71382,3.84266 3.84266,3.84266 h 17.3147 c 2.12884,0 3.84266,-1.713826 3.84266,-3.84266 V 52.083495 c 0,-0.263766 -0.0269,-0.521425 -0.077,-0.769978 a 12.5,12.5 0 0 0 0.077,-1.072803 12.5,12.5 0 0 0 -12.50001,-12.500012 z" />
<path
id="path1-92"
style="fill:#000000;stroke-width:0.800595;stroke-linecap:square"
d="m 22.50001,41.990571 a 8.25,8.25 0 0 0 -8.25014,8.250143 8.25,8.25 0 0 0 8.25014,8.250142 8.25,8.25 0 0 0 8.24963,-8.250142 8.25,8.25 0 0 0 -8.24963,-8.250143 z m -7.69204,21.49998 c -0.30915,0 -0.5581,0.248954 -0.5581,0.558106 v 23.883811 c 0,0.30915 0.24895,0.55811 0.5581,0.55811 h 15.38408 c 0.30915,0 0.55759,-0.24896 0.55759,-0.55811 V 64.048657 c 0,-0.309152 -0.24844,-0.558106 -0.55759,-0.558106 z" />
<circle
style="fill:#000000;stroke-width:0.824856;stroke-linecap:square"
id="path1-7"
cx="22.849754"
cy="18.5"
r="8.5" />
<g
id="g19"
transform="translate(-23.668103,51.728203)">
<circle
style="fill:#0000ff;stroke-width:0.790891;stroke-linecap:square"
id="path1-5"
cx="105.05"
cy="197.38885"
r="8.1499996" />
<path
id="path1-9"
style="fill:#000000;stroke-width:0.800595;stroke-linecap:square"
d="m 97.358228,159.13899 c -0.30916,0 -0.55811,0.24895 -0.55811,0.5581 v 23.88382 c 0,0.30915 0.24895,0.5581 0.55811,0.5581 H 112.7423 c 0.30915,0 0.55759,-0.24895 0.55759,-0.5581 v -23.88382 c 0,-0.30915 -0.24844,-0.5581 -0.55759,-0.5581 z m 7.692032,30.00023 c -4.55626,-8e-5 -8.249938,3.69337 -8.250142,8.24963 -7.7e-5,4.55646 3.693682,8.25022 8.250142,8.25014 4.55626,-2e-4 8.24971,-3.69388 8.24963,-8.25014 -2e-4,-4.55606 -3.69357,-8.24943 -8.24963,-8.24963 z"
sodipodi:nodetypes="sssssssssccccc" />
<path
id="path1-9-1"
style="fill:#000000;stroke-width:0.800595;stroke-linecap:square"
d="m 89.729419,197.3525 c -0.154575,-0.26773 -0.494652,-0.35887 -0.762384,-0.20429 L 68.28304,209.09012 c -0.267732,0.15457 -0.358849,0.49466 -0.204274,0.76239 l 7.692036,13.32299 c 0.154575,0.26774 0.494392,0.35842 0.762124,0.20384 L 97.21692,211.43743 c 0.267732,-0.15457 0.359109,-0.4942 0.204534,-0.76194 z"
sodipodi:nodetypes="sccsccccs" />
<path
id="path1-9-19"
style="fill:#000000;stroke-width:0.800595;stroke-linecap:square"
d="m 112.67881,210.67504 c -0.15457,0.26773 -0.0635,0.60782 0.20428,0.76239 l 20.68399,11.94191 c 0.26774,0.15458 0.60781,0.0634 0.76239,-0.20429 l 7.69203,-13.32299 c 0.15458,-0.26774 0.0632,-0.60737 -0.20453,-0.76194 l -20.684,-11.94191 c -0.26773,-0.15458 -0.60754,-0.0639 -0.76212,0.20384 z"
sodipodi:nodetypes="ccscsccsc" />
</g>
<g
id="g4"
transform="translate(83.930422,6.9205454)">
<circle
style="fill:#00ffff;fill-opacity:0.2;stroke:none;stroke-width:0.824856;stroke-linecap:square"
id="circle1"
cx="45.592381"
cy="158.53038"
r="8.5" />
<path
style="fill:#6c5353;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:square;stroke-dasharray:4, 0.999999, 0.5, 0.999999;stroke-dashoffset:0"
d="m 45.592381,139.53039 v 38.12073"
id="path20" />
<path
style="fill:#6c5353;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:square;stroke-dasharray:4, 0.999999, 0.5, 0.999999;stroke-dashoffset:0"
d="M 64.592375,158.53038 H 26.471645"
id="path20-6" />
</g>
<g
id="g1"
transform="translate(83.930422,6.9205454)">
<path
style="fill:#6c5353;fill-opacity:0.2;stroke-width:1.42704;stroke-linecap:square"
d="m 32.092425,137.76233 v -4.9997 h 26.99991 v 4.9997 z"
id="path19" />
<path
style="fill:#6c5353;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:square;stroke-dasharray:4, 0.999999, 0.5, 0.999999;stroke-dashoffset:0"
d="M 64.592375,135.26248 H 26.471645"
id="path20-7" />
</g>
<g
id="g2"
transform="translate(83.930422,6.9205454)">
<path
style="fill:#6c5353;fill-opacity:0.2;stroke-width:1.42704;stroke-linecap:square"
d="m 61.157835,183.10581 -4.32997,-2.5001 13.49996,-23.38255 4.32996,2.49959 z"
id="path18" />
<path
style="fill:#6c5353;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:square;stroke-dasharray:4, 0.999999, 0.5, 0.999999;stroke-dashoffset:0"
d="M 75.242825,153.71001 56.182458,186.72352"
id="path20-5" />
</g>
<g
id="g3"
transform="translate(83.930422,6.9205454)">
<path
style="fill:#6c5353;fill-opacity:0.2;stroke-width:1.42704;stroke-linecap:square"
d="m 30.026925,183.10581 -13.499949,-23.38306 4.32996,-2.49959 13.499949,23.38255 z"
id="rect3-9" />
<path
style="fill:#6c5353;stroke:#1a1a1a;stroke-width:0.5;stroke-linecap:square;stroke-dasharray:4, 0.999999, 0.5, 0.999999;stroke-dashoffset:0"
d="m 15.94193,153.71001 19.060367,33.01351"
id="path20-5-2" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,279 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="100mm"
height="100mm"
viewBox="0 0 100 100"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="tripod_parts.v2.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="1.0675938"
inkscape:cx="175.6286"
inkscape:cy="273.98061"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<path
id="rect1-6-9-9"
style="fill:#d40000;stroke-width:2.01997;stroke-linecap:square"
d="m 8.5,20.000023 v 19.99981 h 1.99988 v 30.00024 h 5.04982 24.95042 c 5.54,0 9.9999,-4.45991 9.9999,-9.99991 0,-5.54 -4.4599,-10.00042 -9.9999,-10.00042 H 25.54961 c -5.52278,-5e-5 -9.99986,-4.47714 -9.99991,-9.99991 v -19.99981 z" />
<rect
style="fill:#008080;stroke-width:1.74934;stroke-linecap:square"
id="rect7-5"
width="25"
height="30"
x="-15"
y="-80"
rx="0"
transform="scale(-1,1)" />
<rect
style="fill:#008080;stroke-width:1.74934;stroke-linecap:square"
id="rect15"
width="25"
height="30"
x="-15"
y="-109.99998"
rx="0"
transform="scale(-1,1)" />
<rect
style="fill:#008080;stroke-width:1.74934;stroke-linecap:square"
id="rect16"
width="25"
height="30"
x="-15"
y="-139.99997"
rx="0"
transform="scale(-1,1)" />
<path
id="circle8"
style="fill:#008080;stroke-width:2.92189;stroke-linecap:square"
d="m 138.45865,8.8549658 a 12,12 0 0 0 -12.0003,12.0003002 12,12 0 0 0 12.0003,11.99979 12,12 0 0 0 11.99978,-11.99979 12,12 0 0 0 -11.99978,-12.0003002 z m 0,2.0003902 a 10,10 0 0 1 9.9999,9.99991 10,10 0 0 1 -9.9999,9.99991 10,10 0 0 1 -9.9999,-9.99991 10,10 0 0 1 9.9999,-9.99991 z" />
<path
id="rect9"
style="fill:#008080;stroke-width:1.714;stroke-linecap:square"
d="m 154.53829,8.8549658 v 2.0003902 h 29.99972 V 8.8549658 Z m 0,22.0002102 v 1.99988 h 29.99972 v -1.99988 z" />
<path
id="rect2"
style="fill:#0000ff;stroke-width:1.21198;stroke-linecap:square"
d="m 154.53845,79.144736 v 1.99987 h 29.99968 v -1.99987 z m 0,9.9999 v 2.0004 h 29.99968 v -2.0004 z" />
<circle
style="fill:#ff0000;stroke-width:2.43491;stroke-linecap:square"
id="path1"
cx="-138.45837"
cy="-44.859802"
r="10"
transform="scale(-1,1)" />
<circle
style="fill:#008000;stroke-width:1.94793;stroke-linecap:square"
id="path1-5"
cx="-138.45837"
cy="-23.429901"
r="8"
transform="scale(-1,1)" />
<circle
style="fill:#0000ff;stroke-width:1.46095;stroke-linecap:square"
id="path1-5-2"
cx="-138.45837"
cy="-5.999999"
r="6"
transform="scale(-1,1)" />
<path
id="circle1"
style="fill:#ff0000;stroke-width:2.43491;stroke-linecap:square"
d="m 138.45838,36.285166 a 10,10 0 0 0 -9.99989,9.9999 10,10 0 0 0 9.99989,9.99991 10,10 0 0 0 9.99991,-9.99991 10,10 0 0 0 -9.99991,-9.9999 z m 0,1.99987 a 8,8 0 0 1 8.00003,8.00003 8,8 0 0 1 -8.00003,8.00003 8,8 0 0 1 -8.00002,-8.00003 8,8 0 0 1 8.00002,-8.00003 z" />
<path
id="circle3"
style="fill:#008000;stroke-width:1.94793;stroke-linecap:square"
d="m 138.45839,59.715086 a 8,8 0 0 0 -8.00003,8.00003 8,8 0 0 0 8.00003,7.99951 8,8 0 0 0 8.00003,-7.99951 8,8 0 0 0 -8.00003,-8.00003 z m 0,1.99988 a 6,6 0 0 1 6.00015,6.00015 6,6 0 0 1 -6.00015,5.99963 6,6 0 0 1 -6.00015,-5.99963 6,6 0 0 1 6.00015,-6.00015 z" />
<text
xml:space="preserve"
style="font-weight:bold;font-stretch:condensed;font-size:4.46943px;line-height:1.1;font-family:'Liberation Sans Narrow';-inkscape-font-specification:'Liberation Sans Narrow Bold Condensed';text-align:center;letter-spacing:0px;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#ff0000;stroke-width:4.43423;stroke-linecap:square"
x="116.9392"
y="-43.321255"
id="text4"><tspan
sodipodi:role="line"
id="tspan4"
style="fill:#ff0000;stroke-width:4.43423"
x="116.9392"
y="-43.321255">20 mm</tspan></text>
<text
xml:space="preserve"
style="font-weight:bold;font-stretch:condensed;font-size:4.46943px;line-height:1.1;font-family:'Liberation Sans Narrow';-inkscape-font-specification:'Liberation Sans Narrow Bold Condensed';text-align:center;letter-spacing:0px;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#008000;stroke-width:4.43423;stroke-linecap:square"
x="116.88684"
y="-21.89135"
id="text5"><tspan
sodipodi:role="line"
id="tspan5"
style="fill:#008000;stroke-width:4.43423"
x="116.88684"
y="-21.89135">16 mm</tspan></text>
<text
xml:space="preserve"
style="font-weight:bold;font-stretch:condensed;font-size:4.46943px;line-height:1.1;font-family:'Liberation Sans Narrow';-inkscape-font-specification:'Liberation Sans Narrow Bold Condensed';text-align:center;letter-spacing:0px;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#0000ff;stroke-width:4.43423;stroke-linecap:square"
x="116.88684"
y="-4.4396276"
id="text6"><tspan
sodipodi:role="line"
id="tspan6"
style="fill:#0000ff;stroke-width:4.43423"
x="116.88684"
y="-4.4396276">12 mm</tspan></text>
<path
id="rect1"
style="fill:#ff0000;stroke-width:1.56466;stroke-linecap:square"
d="m 154.53829,56.284806 h 30 v -1.99987 h -30 z m 0,-17.99993 h 30 v -1.99988 h -30 z" />
<path
id="rect1-5-7"
style="fill:#008000;stroke-width:1.39948;stroke-linecap:square"
d="m 154.53829,75.714796 h 30 v -1.99987 h -30 z m 0,-14.00017 h 30 v -1.99988 h -30 z" />
<rect
style="fill:#ff0000;stroke-width:1.56466;stroke-linecap:square"
id="rect1-6"
width="20"
height="29.999996"
x="-54.859802"
y="154.5383"
rx="0"
transform="matrix(0,1,1,0,0,0)" />
<rect
style="fill:#008000;stroke-width:1.39948;stroke-linecap:square"
id="rect1-5-0"
width="16"
height="29.999996"
x="-31.429901"
y="154.5383"
rx="0"
transform="matrix(0,1,1,0,0,0)" />
<rect
style="fill:#0000ff;stroke-width:1.21198;stroke-linecap:square"
id="rect1-2-6"
width="12"
height="29.999996"
x="-11.999999"
y="154.5383"
rx="0"
transform="matrix(0,1,1,0,0,0)" />
<path
id="circle2"
style="fill:#0000ff;stroke-width:1.46095;stroke-linecap:square"
d="m 138.45839,79.144736 a 6,6 0 0 0 -6.00015,6.00015 6,6 0 0 0 6.00015,6.00015 6,6 0 0 0 6.00015,-6.00015 6,6 0 0 0 -6.00015,-6.00015 z m 0,1.99987 a 4,4 0 0 1 3.99976,4.00028 4,4 0 0 1 -3.99976,3.99975 4,4 0 0 1 -3.99975,-3.99975 4,4 0 0 1 3.99975,-4.00028 z" />
<rect
style="fill:#ff0000;stroke-width:1.42833;stroke-linecap:square"
id="rect5"
width="20"
height="25"
x="-100.0001"
y="50.50005"
rx="0"
transform="rotate(-90)" />
<circle
style="fill:#008080;stroke-width:2.92189;stroke-linecap:square"
id="circle4"
cx="-138.45837"
cy="-70.289703"
r="12"
transform="scale(-1,1)" />
<text
xml:space="preserve"
style="font-weight:bold;font-stretch:condensed;font-size:4.46943px;line-height:1.1;font-family:'Liberation Sans Narrow';-inkscape-font-specification:'Liberation Sans Narrow Bold Condensed';text-align:center;letter-spacing:0px;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#008080;stroke-width:4.43423;stroke-linecap:square"
x="116.9392"
y="-68.729332"
id="text7"><tspan
sodipodi:role="line"
id="tspan7"
style="fill:#008080;stroke-width:4.43423"
x="116.9392"
y="-68.729332">24 mm</tspan></text>
<rect
style="fill:#008080;stroke-width:1.714;stroke-linecap:square"
id="rect7"
width="24"
height="30"
x="-82.289703"
y="154.5383"
rx="0"
transform="matrix(0,1,1,0,0,0)" />
<rect
style="fill:#008000;stroke-width:1.39948;stroke-linecap:square"
id="rect11"
width="16"
height="29.999996"
x="-10.5"
y="-139.99997"
rx="0"
transform="scale(-1,1)" />
<rect
style="fill:#ff0000;stroke-width:1.56466;stroke-linecap:square"
id="rect14"
width="20"
height="29.999996"
x="-12.5"
y="-109.99998"
rx="0"
transform="scale(-1,1)" />
<path
d="m 40.02491,87.449663 c 1.394651,4.9e-5 2.525147,1.130776 2.524911,2.525427 -4.9e-5,1.394449 -1.130462,2.524862 -2.524911,2.524911 -1.394449,-5e-5 -2.524861,-1.130462 -2.52491,-2.524911 -2.36e-4,-1.394651 1.130259,-2.525377 2.52491,-2.525427 z"
style="fill:#1a1a1a;stroke-width:2.01997;stroke-linecap:square"
id="path1-2" />
<rect
style="fill:#999999;stroke-width:3.02995;stroke-linecap:square"
id="rect3"
width="25"
height="90"
x="24.541759"
y="5.000001"
rx="0"
transform="scale(-1,1)" />
<path
id="path3"
style="fill:#1a1a1a;stroke-width:1.56466;stroke-linecap:square"
d="M -43.041397,4.9999048 V 35.000142 h -2.000395 v 29.99972 h -1.999877 v 30.000235 h 19.999813 V 64.999862 h -1.999878 v -29.99972 h -1.999878 V 4.9999048 Z" />
<circle
style="fill:#ff0000;stroke-width:2.43491;stroke-linecap:square"
id="circle5"
cx="-138.45837"
cy="-44.859802"
transform="scale(-1,1)"
r="10" />
<path
id="rect1-6-9-1"
style="fill:#550000;stroke-width:2.01997;stroke-linecap:square"
d="M 10.599642,70.000073 V 95.000097 H 0.5 V 105 c 11.045138,-3e-5 22.474533,-4.99969 25.820646,-4.99969 h 14.279232 c 5.540001,0 9.999906,-4.459908 9.999906,-9.999908 0,-5.54 -4.459905,-10.000423 -9.999906,-10.000423 H 25.649369 c -5.522774,-5.1e-5 -9.999855,-4.477132 -9.999906,-9.999906 z"
sodipodi:nodetypes="cccczsssccc" />
<path
id="rect4"
style="fill:#999999;stroke-width:2.21276;stroke-linecap:square"
d="M 6.5001506,-19.999813 V 0 h 1.9998779 v 19.999813 h 7.0000895 v -39.999626 z"
sodipodi:nodetypes="ccccccc" />
<path
id="path1-0"
style="fill:#c83737;stroke-width:1.24182;stroke-linecap:square"
d="m -37.823112,-30.438946 c -3.02021,10e-5 -5.46855,2.46236 -5.46865,5.49973 -1.9e-4,3.03759 2.44823,5.50017 5.46865,5.50027 0.26155,-1.3e-4 0.52277,-0.57348 0.781619,-0.6112 0.25868,0.0377 0.5197,0.61105 0.781081,0.6112 3.02042,-10e-5 5.46884,-2.46268 5.46865,-5.50027 -10e-5,-3.03737 -2.448441,-5.49963 -5.46865,-5.49973 -0.261921,7e-5 -0.523491,0.57343 -0.7827,0.6112 -0.25832,-0.0376 -0.518991,-0.611 -0.78,-0.6112 z"
sodipodi:nodetypes="ccccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="60mm"
height="60mm"
viewBox="0 0 60 60"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="v2_bottom.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.5163426"
inkscape:cx="113.45832"
inkscape:cy="113.45832"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-237)">
<path
id="rect1-6-9"
style="fill:#ff0000;stroke-width:2.01997;stroke-linecap:square"
d="M 10.050033 267.00024 L 10.050033 291.99974 L 9.5704753 291.99974 L 9.5704753 292.00026 L 0 292.00026 L 0 302.00017 C 11.045138 302.00014 22.474533 297.00047 25.820646 297.00047 L 40.099878 297.00047 C 45.639879 297.00047 50.099784 292.54057 50.099784 287.00057 C 50.099784 281.46057 45.639879 277.00014 40.099878 277.00014 L 25.149369 277.00014 C 19.626595 277.00009 15.149514 272.52302 15.149463 267.00024 L 10.050033 267.00024 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="60mm"
height="60mm"
viewBox="0 0 60 60"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="reduc_20x16.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.0334082"
inkscape:cx="14.999448"
inkscape:cy="110.89756"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-101.33542,-118.53333)">
<circle
style="fill:#0000ff;stroke-width:0.633079;stroke-linecap:square"
id="circle4"
cx="141.33542"
cy="168.53333"
r="2.5999999" />
<path
id="rect1-6-9"
style="fill:#ff0000;stroke-width:2.01997;stroke-linecap:square"
d="m 109.43542,128.53328 v 19.99981 h 1.99988 v 30.00024 h 5.04982 24.95042 c 5.54,0 9.9999,-4.45991 9.9999,-9.99991 0,-5.54 -4.4599,-10.00042 -9.9999,-10.00042 h -14.95051 c -5.52278,-5e-5 -9.99986,-4.47714 -9.99991,-9.99991 v -19.99981 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="90.000191mm"
height="10.000013mm"
viewBox="0 0 90.00019 10.000013"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="plate.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="2.8756735"
inkscape:cx="174.74167"
inkscape:cy="-8.8674879"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
showgrid="false" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-59.999957,-46.999337)">
<path
id="rect1"
style="fill:#6c5353;fill-opacity:1;stroke-width:0.24301;stroke-linecap:square;stroke-dasharray:1.94409, 0.486019, 0.24301, 0.486019"
d="M 62.550706 46.999337 C 61.137698 46.999337 59.999957 48.137078 59.999957 49.550086 L 59.999957 50.546407 L 59.999957 52.177316 L 59.999957 52.708549 C 59.999957 52.732819 60.007542 52.755316 60.008742 52.779346 C 60.007642 52.799306 59.999957 52.818147 59.999957 52.838257 L 59.999957 54.175643 C 59.999957 55.070143 60.949082 55.726978 62.121275 55.790532 C 76.331986 56.561021 90.706875 56.999243 104.99979 56.999243 C 119.29272 56.999243 133.66812 56.561021 147.87883 55.790532 C 149.05102 55.726972 150.00015 55.070143 150.00015 54.175643 L 150.00015 52.838257 C 150.00015 52.817067 149.9934 52.797235 149.9924 52.776245 C 149.9934 52.753225 150.00015 52.731789 150.00015 52.708549 L 150.00015 52.177316 L 150.00015 50.545891 L 150.00015 49.550086 C 150.00015 48.137078 148.86241 46.999337 147.4494 46.999337 L 62.550706 46.999337 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="44.999836mm"
height="40.000141mm"
viewBox="0 0 44.999836 40.00014"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="plate_base.svg"
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="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
inkscape:zoom="4.0668164"
inkscape:cx="44.383612"
inkscape:cy="96.266947"
inkscape:window-width="1920"
inkscape:window-height="1015"
inkscape:window-x="0"
inkscape:window-y="36"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-15.000118,-119.08321)">
<path
id="rect3"
style="fill:#ff00ff;stroke-width:1.44397;stroke-linecap:square"
d="m 15.000118,119.08321 v 15.00012 h 8.099764 l 2.36e-4,22.99988 0.9,2.00014 h 3.5 c 2.990475,-14.87348 10.342635,-29.88687 26.324504,-34.6506 4.102424,-1.22282 5.118184,-3.25732 6.175333,-5.34954 z"
sodipodi:nodetypes="ccccccscc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Some files were not shown because too many files have changed in this diff Show More