MCPcopy Create free account
hub / github.com/ImageEngine/cortex / doOperation

Method doOperation

python/IECore/SequenceMvOp.py:73–83  ·  view source on GitHub ↗
( self, operands )

Source from the content-addressed store, hash-verified

71 )
72
73 def doOperation( self, operands ) :
74
75 src = self.parameters()["src"].getFileSequenceValue()
76 dst = self.parameters()["dst"].getFileSequenceValue()
77 # if no frame list is specified on the dst parameter, then we use the same as src parameter.
78 if isinstance( dst.frameList, IECore.EmptyFrameList ):
79 dst.frameList = src.frameList
80
81 IECore.mv( src, dst )
82
83 return IECore.StringData( str(dst) )
84
85IECore.registerRunTimeTyped( SequenceMvOp )

Callers

nothing calls this directly

Calls 3

getFileSequenceValueMethod · 0.80
strFunction · 0.50
parametersMethod · 0.45

Tested by

no test coverage detected