( self, operands )
| 70 | ) |
| 71 | |
| 72 | def doOperation( self, operands ) : |
| 73 | |
| 74 | src = self.parameters()["src"].getFileSequenceValue() |
| 75 | dst = self.parameters()["dst"].getFileSequenceValue() |
| 76 | # if no frame list is specified on the dst parameter, then we use the same as src parameter. |
| 77 | if isinstance( dst.frameList, IECore.EmptyFrameList ): |
| 78 | dst.frameList = src.frameList |
| 79 | |
| 80 | IECore.cp( src, dst ) |
| 81 | |
| 82 | return IECore.StringData( str(dst) ) |
| 83 | |
| 84 | IECore.registerRunTimeTyped( SequenceCpOp ) |
nothing calls this directly
no test coverage detected