diff options
| -rw-r--r-- | lib/core/c++/write_vtk.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/c++/write_vtk.hpp b/lib/core/c++/write_vtk.hpp index 751ec50..f7b8f8f 100644 --- a/lib/core/c++/write_vtk.hpp +++ b/lib/core/c++/write_vtk.hpp @@ -23,7 +23,7 @@ struct lbm_vtk_writer { template<typename T, uint64_t D> struct lbm_vtk_writer<sch::Primitive<T,D>> { static saw::error_or<void> apply_header(std::ostream& vtk_file, std::string_view name){ - vtk_file<<"SCALARS "<<name<<" float\n"; + vtk_file<<"SCALARS "<<name<<" float 1\n"; vtk_file<<"LOOKUP_TABLE default\n"; return saw::make_void(); } |
