Skip to content

Instantly share code, notes, and snippets.

@grkvlt
Last active October 15, 2017 20:20
Show Gist options
  • Save grkvlt/ce0d9ed5eb7858a8699cc2818725d868 to your computer and use it in GitHub Desktop.
Save grkvlt/ce0d9ed5eb7858a8699cc2818725d868 to your computer and use it in GitHub Desktop.
Exploring Iterated Function Systems
public static enum Corner {
NW(Cursor.NW_RESIZE_CURSOR, 0, 0),
SW(Cursor.SW_RESIZE_CURSOR, 0, 1),
SE(Cursor.SE_RESIZE_CURSOR, 1, 1),
NE(Cursor.NE_RESIZE_CURSOR, 1, 0);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment