Is there anyway to go about importing STL files into OpenSCAD with the ability to modify them?
For instance, the following code demonstrates what I have tried thus far:
difference() {
import("spherical_puzzle_base.stl");
translate([0, 0, -RADIUS/2]) {
cube([RADIUS*2, RADIUS*2, RADIUS], center=true);
}
}
When I do this I can either hit F5 to render the STL file only which doesn't include the intersection. Or I can hit F6 to compile and render, but it creates a very messed up rendering, no where near manifold or even close to what I would expect for that matter. Is there a solution to this problem using OpenSCAD? Thanks!
(I am attempting to do it this way to save long rendering times, especially while I am testing various design possibilities)