Skip to content

Instantly share code, notes, and snippets.

@guigur
Created November 21, 2022 17:24
Show Gist options
  • Save guigur/1b8694eb9895035ac21d69bce43ebc07 to your computer and use it in GitHub Desktop.
Save guigur/1b8694eb9895035ac21d69bce43ebc07 to your computer and use it in GitHub Desktop.
Logo Fabriquet SCAD Simple
cube_dim = [67,134,40];
translate_dim = 12;
//cube(cube_dim, center=true);
/*
translate([1,1,1]){
cube(cube_dim, center=true);
}
*/
color("#ff0000"){
translate([0, -translate_dim - (67/2), 0]){
rotate([0,0,90]){
cube(cube_dim, center=true);
}
}
}
translate([(67/2) + translate_dim, 0, 0]){
rotate([90,0,0]){
cube(cube_dim, center=true);
}
}
translate([0, 0, (67/2) + translate_dim]){
rotate([0,90,0]){
cube(cube_dim, center=true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment