Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
19
Task/Death-Star/Openscad/death-star.scad
Normal file
19
Task/Death-Star/Openscad/death-star.scad
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
// We are performing geometric subtraction
|
||||
|
||||
difference() {
|
||||
|
||||
// Create the primary sphere of radius 60 centred at the origin
|
||||
|
||||
translate(v = [0,0,0]) {
|
||||
sphere(60);
|
||||
}
|
||||
|
||||
/*Subtract an overlapping sphere with a radius of 40
|
||||
The resultant hole will be smaller than this, because we only
|
||||
only catch the edge
|
||||
*/
|
||||
|
||||
translate(v = [0,90,0]) {
|
||||
sphere(40);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue