I'm writing a simple mesh case to compare the output mesh data structure with another mesh format. When I run the code, it hangs after the final line and does not complete.
poly = np.array([[0, 0],
[1, 0],
[1, 1],
[0, 1]])
poly_input = xmsmesh.meshing.PolyInput(out_poly=poly)
mesh_io = xmsmesh.meshing.MultiPolyMesherIo(poly_inputs=[poly_input ])
succeeded, errors = xmsmesh.meshing.mesh_utils.generate_mesh(mesh_io=mesh_io)
Is this a problem introduced with the most recent cycle of upgrades?
I'm writing a simple mesh case to compare the output mesh data structure with another mesh format. When I run the code, it hangs after the final line and does not complete.
poly = np.array([[0, 0],
[1, 0],
[1, 1],
[0, 1]])
poly_input = xmsmesh.meshing.PolyInput(out_poly=poly)
mesh_io = xmsmesh.meshing.MultiPolyMesherIo(poly_inputs=[poly_input ])
succeeded, errors = xmsmesh.meshing.mesh_utils.generate_mesh(mesh_io=mesh_io)
Is this a problem introduced with the most recent cycle of upgrades?