From b5009a204f6c7b24d7dd5b0827733b9afe3f6e7e Mon Sep 17 00:00:00 2001 From: Craig Warren Date: Tue, 18 Jan 2022 14:39:29 +0000 Subject: [PATCH] Fix line split. --- gprMax/geometry_outputs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gprMax/geometry_outputs.py b/gprMax/geometry_outputs.py index 1f635601..cd3a8f52 100644 --- a/gprMax/geometry_outputs.py +++ b/gprMax/geometry_outputs.py @@ -190,8 +190,8 @@ class GeometryViewLines(GeometryView): """ # Write the VTK file .vtu - linesToVTK(str(self.filename), vtk_data['x'], vtk_data['y'], v - tk_data['z'], cellData={"Material": vtk_data['data']}, + linesToVTK(str(self.filename), vtk_data['x'], vtk_data['y'], + vtk_data['z'], cellData={"Material": vtk_data['data']}, comments=[vtk_data['comments']])