pub fn write_vtk_binary_unstructured(
path: &str,
points: &[[f64; 3]],
cells: &[Vec<usize>],
cell_types: &[u8],
) -> Result<()>Expand description
Write a legacy VTK unstructured grid in binary (big-endian) format.
VTK legacy binary files use big-endian byte order. Supports arbitrary cell types and float64 point coordinates.