Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. // pointsCnt - i - 1 is less that null
  2. Point second = collection[(i + 1) >= pointsCnt ? pointsCnt - i - 1 : i + 1],
  3.             third  = collection[(i + 2) >= pointsCnt ? pointsCnt - i - 2 : i + 2];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement