added parametric wargaming base
This commit is contained in:
BIN
openscad/own/parametric wargaming base/wagaming_base.png
Normal file
BIN
openscad/own/parametric wargaming base/wagaming_base.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
17
openscad/own/parametric wargaming base/wagaming_base.scad
Normal file
17
openscad/own/parametric wargaming base/wagaming_base.scad
Normal file
@@ -0,0 +1,17 @@
|
||||
// Inverted Wargaming base
|
||||
// by zeus - 2021-11-11 - CC-BY-NC-SA-4.0
|
||||
// ###
|
||||
// Variables
|
||||
base_lower_dia=32; //diameter in mm
|
||||
base_upper_dia=30; //upper diameter
|
||||
cutout_dia=base_upper_dia-1.6; //adjusted for 2 walls on 0.4 nozzle (0.4*2*2)
|
||||
base_h=4; //overall height
|
||||
mt=1.5; //bottom thickness, suitable for 0.3 and 0.5 layers
|
||||
$fn=150;
|
||||
//
|
||||
// ###
|
||||
// Model
|
||||
difference(){
|
||||
cylinder(r1=base_lower_dia/2, r2=base_upper_dia/2, h=base_h);
|
||||
translate([0,0,mt]) #cylinder(r=cutout_dia/2, h=base_h-mt+0.1);
|
||||
}
|
BIN
openscad/own/parametric wargaming base/wagaming_base.stl
Normal file
BIN
openscad/own/parametric wargaming base/wagaming_base.stl
Normal file
Binary file not shown.
21
openscad/own/stl-mixer/pushfit_2020_mount.scad
Normal file
21
openscad/own/stl-mixer/pushfit_2020_mount.scad
Normal file
@@ -0,0 +1,21 @@
|
||||
$fn=25;
|
||||
|
||||
module holder(){
|
||||
difference(){
|
||||
intersection(){
|
||||
translate([10,0,0])cube([40,20,3],center=true);
|
||||
translate([20-7,0,0])#cylinder(r=20,h=3+0.1,center=true,$fn=150);
|
||||
}
|
||||
cylinder(d2=6,d1=5.5,h=3+0.1,center=true);
|
||||
}
|
||||
translate([30-1.5,0,10-1.5]){
|
||||
rotate([0,90,0]){
|
||||
difference(){
|
||||
translate([0,0,0])cube([20,20,3],center=true);
|
||||
cylinder(d1=6,d2=5.5,h=3+0.1,center=true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
holder();
|
Reference in New Issue
Block a user