Skip to content

Commit 3ec9870

Browse files
danlipsajourdain
authored andcommitted
fix: fix the filter for polydata input
1 parent d479e89 commit 3ec9870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/e3sm_quickview/plugins/eam_projection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def RequestData(self, request, inInfo, outInfo):
317317
else:
318318
# we modify the points, so copy them
319319
out_points_vtk = vtkPoints()
320-
out_points_vtk.DeepCopy(inData.GetPoints())
320+
out_points_vtk.DeepCopy(outData.GetPoints())
321321
outData.SetPoints(out_points_vtk)
322322
out_points_np = outData.points
323323

0 commit comments

Comments
 (0)