01 /*
02 * Created on Aug 30, 2007
03 *
04 */
05 package com.x8ing.mc.distribution;
06
07 /**
08 * Implements a certain distribution of random numbers, e.g. Gauss.
09 *
10 * @author Patrick Heusser
11 */
12 public interface RandomDistribution {
13
14 /**
15 * Returns the the distribution normalized between 0..1 and the the values 0...1.
16 *
17 * @return
18 */
19 public double getNextRandomNumber();
20
21 }
|