public final void cone(Cone cone, int res, boolean topClosed,
boolean bottomClosed, boolean smooth) {
Mesh3D mesh = cone.toMesh(res);
if (smooth) {
mesh.computeVertexNormals();
}
mesh(mesh, smooth, 0);
}
public final void cylinder(AxisAlignedCylinder cylinder) {