Package ca.eandb.jmist.framework.random

Examples of ca.eandb.jmist.framework.random.ThreadLocalRandom


    this.background = background;
    this.rng = rng;
  }

  public SceneRayShader(SceneElement root, Light light, RayShader background) {
    this(root, light, background, new ThreadLocalRandom(new SimpleRandom()));
  }
View Full Code Here


  public SceneRayShader(SceneElement root, Light light, RayShader background) {
    this(root, light, background, new ThreadLocalRandom(new SimpleRandom()));
  }

  public SceneRayShader(Scene scene, RayShader background) {
    this(scene.getRoot(), scene.getLight(), background, new ThreadLocalRandom(new SimpleRandom()));
  }
View Full Code Here

  public SceneRayShader(Scene scene, RayShader background) {
    this(scene.getRoot(), scene.getLight(), background, new ThreadLocalRandom(new SimpleRandom()));
  }

  public SceneRayShader(Scene scene) {
    this(scene.getRoot(), scene.getLight(), RayShader.BLACK, new ThreadLocalRandom(new SimpleRandom()));
  }
View Full Code Here

TOP

Related Classes of ca.eandb.jmist.framework.random.ThreadLocalRandom

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.