deltas.each_with_index.map { |val, idx| val + (idx % 2 == 0 ? x : y )}
Whether or not this is "less complex" depends on the audience.
Reduction of duplication and complexity should focus on macro-behavior rather than micro-refactoring short, already-readable methods.
Will this rewrite lead to a quantifiably easier-to-understand system? Or are there more important, higher-level issues?
Would enhancing app, class, and method documentation be better? Should those docs be in the code, or in a wiki? Would a picture be worth a thousand lines?
Performance comparison vs. @tokland's (his wins by a significant amount). Assuming deltas is a million-element array 1-1m. MRI, Ubuntu, old pokey machine.
My version
deltas.each_with_index.map { |val, idx| val + (idx % 2 == 0 ? x : y )}
Total: 1.764807
%self total self wait child calls name
100.00 1.76 1.76 0.00 0.00 1 Array#each
0.00 1.76 0.00 0.00 1.76 1 Global#[No method]
0.00 1.76 0.00 0.00 1.76 2 Enumerable#each_with_index
0.00 1.76 0.00 0.00 1.76 1 Enumerable#map
0.00 1.76 0.00 0.00 1.76 1 Enumerator#each
Better, shorter, more communicative version
deltas.each_slice(2).flat_map { |dx, dy| [x + dx, y + dy] }
Total: 1.236144
%self total self wait child calls name
100.00 1.24 1.24 0.00 0.00 1 Array#each
0.00 1.24 0.00 0.00 1.24 1 Global#[No method]
0.00 1.24 0.00 0.00 1.24 2 Enumerable#each_slice
0.00 1.24 0.00 0.00 1.24 1 Enumerable#flat_map
0.00 1.24 0.00 0.00 1.24 1 Enumerator#each
Original version (fastest):
Total: 0.899122
%self total self wait child calls name
100.00 0.90 0.90 0.00 0.00 1 Array#each
0.00 0.90 0.00 0.00 0.90 1 Global#[No method]
0.00 0.90 0.00 0.00 0.90 1 Enumerable#each_slice