A few OpenSCAD sample files
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
union() {
|
|
|
color([1,0,0]) cube([20,20,20], center=true);
|
|
|
color([0,0,1]) sphere(14);
|
|
|
}
|
|
|
|