anims
This commit is contained in:
parent
29d501e64e
commit
95eaaa28ce
6 changed files with 78 additions and 52 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
frame*.png
|
|
@ -1,2 +1,8 @@
|
||||||
# Space-Light-Button-Stands
|
Space Light Button Stands
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Little stands to hold the ikea zigbee buttons in the aux and main spaces
|
||||||
|
|
||||||
|
![](./main_space_light_button-stand.gif)
|
||||||
|
![](./aux_space_light_button-stand.gif)
|
||||||
|
|
||||||
|
|
BIN
aux_space_light_button_stand.gif
Normal file
BIN
aux_space_light_button_stand.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
|
@ -3,6 +3,8 @@ radius=5;
|
||||||
|
|
||||||
use <lib/mirrorcopy.scad>;
|
use <lib/mirrorcopy.scad>;
|
||||||
|
|
||||||
|
module stand(){
|
||||||
|
render()
|
||||||
difference(){
|
difference(){
|
||||||
union(){
|
union(){
|
||||||
hull(){
|
hull(){
|
||||||
|
@ -43,3 +45,11 @@ difference(){
|
||||||
translate([0,0,10-1])
|
translate([0,0,10-1])
|
||||||
cylinder(h=30, d=35, center=true);
|
cylinder(h=30, d=35, center=true);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if($preview){
|
||||||
|
rotate([0,0,360*$t])
|
||||||
|
stand();
|
||||||
|
}else{
|
||||||
|
stand();
|
||||||
|
}
|
BIN
main_space_light_button_stand.gif
Normal file
BIN
main_space_light_button_stand.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 MiB |
|
@ -57,6 +57,8 @@ module pedistal(){
|
||||||
cylinder(d=3.2, h=24, center=true);
|
cylinder(d=3.2, h=24, center=true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
module column(){
|
||||||
|
render()
|
||||||
difference(){
|
difference(){
|
||||||
union(){
|
union(){
|
||||||
hull(){ base(); ring0(); }
|
hull(){ base(); ring0(); }
|
||||||
|
@ -80,4 +82,11 @@ difference(){
|
||||||
translate([17.5,17.5,-4])
|
translate([17.5,17.5,-4])
|
||||||
selfTappingScrew(mSize=5, length=20, recessCap=10);
|
selfTappingScrew(mSize=5, length=20, recessCap=10);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if($preview){
|
||||||
|
rotate([0,0,360*$t])
|
||||||
|
column();
|
||||||
|
}else{
|
||||||
|
column();
|
||||||
|
}
|
Loading…
Reference in a new issue