I tried to create an icosphere in open3d. I tried the "create_sphere" function within TriangleMesh, but for some reason the mesh is made out of rectangles rather than triangles:
import open3d as o3d
a = o3d.geometry.TriangleMesh.create_sphere()
a.compute_vertex_normals()
o3d.visualization.draw_geometries([a])
As you can see, the sphere is not made of triangles. How do I generate an icosphere of triangles?