Files
3D/tir_sportif/tripod/scad/v2_mid.scad
2025-06-28 15:45:58 +02:00

43 lines
978 B
OpenSCAD

$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");
}
}
}
}
}
}
}