24252627282930
private final MersenneTwister mt; private double ratio = 0.5; public RandomBrush(Area shape) { super(shape); mt = new MersenneTwister(System.currentTimeMillis()); }
29303132333435363738
mt = new MersenneTwister(System.currentTimeMillis()); } public RandomBrush(AbstractBrush sb) { super(sb); mt = new MersenneTwister(System.currentTimeMillis()); if (sb instanceof RandomBrush) { ratio = ((RandomBrush) sb).ratio; } }