Corentin L.

Results 2 comments of Corentin L.

I started the work here for PRectilinear and PStructuredGrid (but not yet PImageData): https://github.com/corentin-dev/WriteVTK.jl/commit/49259fa562781e3d0e42256bdbc1056d2523b306 Do you have any idea how `WholeExtent` can be computed in the case of an MPI...

An example, not yet MPI: ```julia using WriteVTK nx,ny,nz = 128,128,128 x = Array(LinRange(0.,1.,nx)) y = Array(LinRange(0.,1.,ny)) z = Array(LinRange(0.,1.,nz)) x3 = repeat(x,1,ny,nz) y3 = repeat(reshape(y,1,ny,1),nx,1,nz) z3 = repeat(reshape(z,1,1,nz),nx,ny,1) field...