Hi,
How do I generate the following mesh in Fenics. My domain is [-1,1]*[-1,1]
I tried the following
mesh = Rectangle(-1,-1,1,1)
but this does not work. Thanks.
RectangleMesh(Point(-1,-1),Point(1,1),10,10)
That works. Thanks chris!