This file contains hidden or 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 java.util.Random; | |
public class Random3D { | |
private long seed; | |
private Random random; | |
private long[] masks; | |
public Random3D(long seed) { | |
random = new Random(seed); |