Egor Larionov

Results 29 comments of Egor Larionov

Would this also work from the Serde API?

Thank you for the issue! It is definitely a goal to support files accepted by VTK or ParaView as much as possible.

I took a quick look at the `ascii.vtk` file, and noticed there are two additional fields titled "CONNECTIVITY" and "OFFSETS", which aren't documented (https://kitware.github.io/vtk-examples/site/VTKFileFormats/) unfortunately. I think these use the...

Thank you @w1th0utnam3 for the flagging this! As far as I can tell the issue is the with DOS line endings. In the short term, feel free to swap to...

I only tested the simplified vtk file in the zip. Now looking at legacy_full.vtk, it makes sense that it doesn't work, there are whole bunch of new fields like INFORMATION,...

Yes absolutely I agree we should add support for `vtktypeinit64` and whatever else new versions of VTK are spitting out even if undocumented. I think we want `vtkio` to be...

I second that we should keep the readme concise, with a few select (definitely non-exhaustive) examples for how to use this lib (e.g. import/export examples, and how to build meshes)....

> Coud you elaborate this more in detail? You are not talking about rustdoc, no or yes? Yes exactly! I'm referring to rustdoc, which can be generated with `cargo doc`,...

Hi @Andlon! thanks the PR! Could you include a new test in the tests subdirectory called "paraview.rs" and add your test there? You can think of each test file being...

I think the reason why number of cells is not serialized is to omit it from polygon meshes, which are not supposed to have cells. This is why the test...