Hi everyone,
I would like to create a simple triangular mesh like the following one, and
then refine it several times...how can I do it?
mesh_info = MeshInfo()
mesh_info.set_points([
(0,0), (2500,0), (2500,2500), (0,2500),
])
mesh_info.set_facets([
[0,1],
[1,2],
[2,3],
[3,0],
])
mesh = build(mesh_info)
If I simply build I get 2 triangles only...that's not what I'm looking for.
That's all.
Thanks in advance.
Bernardo M. Rocha