コード例 #1
0
ファイル: file_series.py プロジェクト: andygotz/dawn-fable
 def __init__(self, filename):
     """ create from a filename (String)"""
     self.obj = filename_object(filename)
コード例 #2
0
ファイル: file_series.py プロジェクト: andygotz/dawn-fable
 def jump_object(self, num):
     """ jump to and read image """
     return filename_object(self.jump(num))
コード例 #3
0
ファイル: file_series.py プロジェクト: andygotz/dawn-fable
 def current_object(self):
     """ current image in sequence """
     return filename_object(self.current())
コード例 #4
0
ファイル: file_series.py プロジェクト: andygotz/dawn-fable
 def next_object(self):
     """ Return the next image """
     return filename_object(self.next())
コード例 #5
0
ファイル: file_series.py プロジェクト: andygotz/dawn-fable
 def previous_object(self):
     """ Return the previous image """
     return filename_object(self.previous())
コード例 #6
0
ファイル: file_series.py プロジェクト: andygotz/dawn-fable
 def first_object(self):
     """ first image in a sequence """
     return filename_object(self.first())
コード例 #7
0
ファイル: file_series.py プロジェクト: andygotz/dawn-fable
 def last_object(self):
     """ last image in a sequence """
     return filename_object(self.last())
コード例 #8
0
 def current_object(self):
     """ current image in sequence """
     return filename_object(self.current())
コード例 #9
0
 def __init__(self, filename):
     """ create from a filename (String)"""
     self.obj = filename_object(filename)
コード例 #10
0
 def jump_object(self, num):
     """ jump to and read image """
     return filename_object(self.jump(num))
コード例 #11
0
 def previous_object(self):
     """ Return the previous image """
     return filename_object(self.previous())
コード例 #12
0
 def next_object(self):
     """ Return the next image """
     return filename_object(self.next())
コード例 #13
0
 def last_object(self):
     """ last image in a sequence """
     return filename_object(self.last())
コード例 #14
0
 def first_object(self):
     """ first image in a sequence """
     return filename_object(self.first())