Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chapterjason/43d4abfd73192201095ce1317e0ba209 to your computer and use it in GitHub Desktop.
Save chapterjason/43d4abfd73192201095ce1317e0ba209 to your computer and use it in GitHub Desktop.
<?php
$combinations = [
[-40, -50],
[-40, 0],
[-40, 50],
[-40, 100],
[-40, 60.8],
[-40, -60.8],
[0, -50],
[0, 0],
[0, 50],
[0, 100],
[0, 60.8],
[0, -60.8],
[40, -50],
[40, 0],
[40, 50],
[40, 100],
[40, 60.8],
[40, -60.8],
[140, -50],
[140, 0],
[140, 50],
[140, 100],
[140, 60.8],
[140, -60.8],
[30.5, -50],
[30.5, 0],
[30.5, 50],
[30.5, 100],
[30.5, 60.8],
[30.5, -60.8],
[-20.5, -50],
[-20.5, 0],
[-20.5, 50],
[-20.5, 100],
[-20.5, 60.8],
[-20.5, -60.8],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment