helo
Last active
May 9, 2020 07:23
-
-
Save jonasbits/5f76bcddc2d95dc8778cf24a7c545f70 to your computer and use it in GitHub Desktop.
makerslink_furniture
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Customizer variables here | |
/* [projShelf1] */ | |
ps1_x = 200; // [300] | |
ps1_y = 100; // [200] | |
/* [projShelf2] */ | |
ps2_x = 200; // [300] | |
ps2_y = 100; // [200] | |
/* [projShelf3] */ | |
ps3_x = 200; // [300] | |
ps3_y = 100; // [200] | |
//end customizer, modules here | |
module projShelf1(){ | |
x =80; | |
y =42; | |
z =100; | |
cube([x,y,z]); | |
} | |
module projShelf2(){ | |
x =80; | |
y =42; | |
z =100; | |
cube([x,y,z]); | |
} | |
module projShelf3(){ | |
x =80; | |
y =42; | |
z =100; | |
cube([x,y,z]); | |
} | |
//translate and rotate here | |
translate([ps1_x,ps1_y,0]) | |
projShelf1(); | |
translate([ps2_x,ps2_y,0]) | |
projShelf2(); | |
translate([ps3_x,ps3_y,0]) | |
projShelf3(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment