Package ca.eandb.jmist.framework

Examples of ca.eandb.jmist.framework.SceneElement.intersect()


   */
  public void intersect(int index, Ray3 ray, IntersectionRecorder recorder) {
    int childIndex = getChildIndex(index);
    int offset = offsets.get(childIndex);
    SceneElement child = children.get(childIndex);
    child.intersect(index - offset, ray, recorder);
  }

  /** The child geometries. */
  private final List<SceneElement> children = new ArrayList<SceneElement>();

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.