Possible bug in plot() function

Issue #217 duplicate
Victor Borisov created an issue

Hi, I have LinuxMint 16 with FEniCS 1.3.0 from www.fenicsproject.org When I used plot() function for a second time, it mess my mesh at visualization. I wrote mesh into pvd-file, and opened it with ParaView - it is good. Here is an example of code:

from dolfin import *

mesh = UnitSquareMesh(20, 20)
File("mesh.xml") << mesh
mesh1 = Mesh("mesh.xml")
plot(mesh1)
mesh2 = Mesh("mesh.xml")
plot(mesh2)
interactive()

Screenshot

Same thing happened with UnitCubeMesh.

Comments (1)

  1. Log in to comment