Skip to content

Instantly share code, notes, and snippets.

View salmonmoose's full-sized avatar
🫎

Amelia Fletcher salmonmoose

🫎
View GitHub Profile
# Configure colors, if available.
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
c_reset='\[\e[0m\]'
c_user='\[\e[0;32m\]'
c_path='\[\e[1;34m\]'
c_git_clean='\[\e[0;37m\]'
c_git_staged='\[\e[0;32m\]'
c_git_unstaged='\[\e[0;31m\]'
else
c_reset=
/*
* OpenSimplex (Simplectic) Noise for 3D in Java
* (Preliminary Release)
*
* KdotJPG
*/
public class OpenSimplexNoise {
private static final double STRETCH_CONSTANT_3D = -1.0 / 6;