Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Added correct nframes calculation when framejump >1
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Aug 24, 2021
1 parent a2f07cb commit 77cf3c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/symba_mars_disk/aescattermovie.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AnimatedScatter(object):
def __init__(self, ds, param):

frame = 0
nframes = ds['time'].size
nframes = int(ds['time'].size / framejump)
self.ds = ds
self.param = param
self.ds['radmarker'] = self.ds['Radius'].fillna(0)
Expand Down

0 comments on commit 77cf3c6

Please sign in to comment.