This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* K.jpg's OpenSimplex 2, smooth variant ("SuperSimplex") | |
* | |
* More language ports, as well as legacy 2014 OpenSimplex, can be found here: | |
* https://github.com/KdotJPG/OpenSimplex2 | |
*/ | |
public class OpenSimplex2S { | |
private static final long PRIME_X = 0x5205402B9270C86FL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import static com.badlogic.gdx.graphics.g2d.Batch.C1; | |
import static com.badlogic.gdx.graphics.g2d.Batch.C2; | |
import static com.badlogic.gdx.graphics.g2d.Batch.C3; | |
import static com.badlogic.gdx.graphics.g2d.Batch.C4; | |
import static com.badlogic.gdx.graphics.g2d.Batch.U1; | |
import static com.badlogic.gdx.graphics.g2d.Batch.U2; | |
import static com.badlogic.gdx.graphics.g2d.Batch.U3; | |
import static com.badlogic.gdx.graphics.g2d.Batch.U4; | |
import static com.badlogic.gdx.graphics.g2d.Batch.V1; | |
import static com.badlogic.gdx.graphics.g2d.Batch.V2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find the Libnotify libraries | |
# This module will find the libnotify library, and do some | |
# sanity checking (making sure things compile, version checking, | |
# dependancy checking, etc). Libnotify requires the GTK Library (GTK2 or GTK3) and glib Library (GLIB2) | |
# This requires cmake => 2.8 to work correctly | |
# @Author: Jacob "HACKhalo2" Litewski | |
# @Version: 1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import random | |
import time | |
import platform | |
snowflakes = {} | |
try: | |
# Windows Support |