Skip to content

Commit

Permalink
Fix ImageData use
Browse files Browse the repository at this point in the history
  • Loading branch information
banesullivan committed Jan 1, 2024
1 parent e09b0dd commit 6e9cada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/filters-general/array-math.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

###############################################################################
# Create some input data. This can be any `vtkDataObject`
inp = pyvista.ImageData((10, 10, 4))
inp = pyvista.ImageData(dimensions=(10, 10, 4))
# Populate the tables
n = 400
arr0 = np.random.random(n)
Expand Down

0 comments on commit 6e9cada

Please sign in to comment.