(out, a, b)
| 69921 | return out; |
| 69922 | } |
| 69923 | function max(out, a, b) { |
| 69924 | out[0] = Math.max(a[0], b[0]); |
| 69925 | out[1] = Math.max(a[1], b[1]); |
| 69926 | return out; |
| 69927 | } |
| 69928 | function round(out, a) { |
| 69929 | out[0] = Math.round(a[0]); |
| 69930 | out[1] = Math.round(a[1]); |