When I try to render this code, it only shows the topmost plane of the trapezoid.
I am trying to cut a cylinder out of this trapezoid, so there is a cylindrical hole in it. I'm using difference to do so. I am pretty sure that I've drawn the trapezoid right. If I remove "difference" from the code, it renders fine. If I take the trapezoid out, the cylinder renders fine (in terrible resolution b/c I've used small numbers.)
Wat
bottomx = 4;
bottomy = 5;
topx = 3;
topy = 5;
difference()
{
polyhedron (
points=[ [bottomx,bottomy,0],[bottomx,-bottomy,0],[-bottomx,-bottomy,0],[-bottomx,bottomy,0],
[topx,topy,5],[topx,-topy,5],[-topx,-topy,5],[-topx,topy,5] ],
triangles= [ [0,1,2],[2,3,0],
[4,5,0],[5,1,0],[5,6,1],[6,2,1],[6,7,2],[7,3,2],[7,4,3],[4,0,3],
[4,5,6],[6,7,4] ]
);
cylinder([2,2,2], center = true);
}
Your polyhedra isn't actually a valid object. Try compiling with nothing but the polyhedra for testing purposes. If it's invalid it won't show up. I'd guess the triangle order is the problem.
Also, take a closer look at the error log.