Package ca.eandb.jmist.framework.path

Examples of ca.eandb.jmist.framework.path.LightNode


  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.Light#emit(ca.eandb.jmist.framework.color.WavelengthPacket, ca.eandb.jmist.framework.Random)
   */
  public final ScatteredRay emit(WavelengthPacket lambda, Random rnd) {
    PathInfo path = new PathInfo(lambda);
    LightNode node = sample(path, rnd.next(), rnd.next(), rnd.next());
    return node.sample(rnd.next(), rnd.next(), rnd.next());
  }
View Full Code Here

TOP

Related Classes of ca.eandb.jmist.framework.path.LightNode

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.