fairmotion/tasks/motion_graph/motion_graph.py [281:289]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                if self.motions[motion_idx] is None:
                    self.load_motion_at_idx(
                        motion_idx, self.motion_files[motion_idx]
                    )
                m = motion_ops.cut(
                    self.motions[motion_idx],
                    frame_start,
                    frame_end + self.frames_blend,
                )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fairmotion/tasks/motion_graph/motion_graph.py [392:405]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if self.motions[motion_idx] is None:
                self.load_motion_at_idx(
                    motion_idx, self.motion_files[motion_idx]
                )

            """
            We should detach with the extra (frames_blend)
            because motion.append affects the end of current motion
            """
            m = motion_ops.cut(
                self.motions[motion_idx],
                frame_start,
                frame_end + self.frames_blend,
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



