Is there a way to know the patch of a given vertex? I mean, if I have the id of a vertex, can I know the ids of the cells that share it?
I tried with closest_cell() and I ran the demo lines
mesh=dolfin.UnitSquareMesh(2,2)
point = dolfin.Point(0.0, 2.0)
mesh.closest_cell(point)
but it gives me the error:
'UnitSquareMesh' object has no attribute 'closest_cell'
Differently from the example, I have a 3D mesh.
Thanks in advance!
Cristina