Package ca.eandb.jmist.framework.geometry

Source Code of ca.eandb.jmist.framework.geometry.CompositeGeometry

/**
* Java Modular Image Synthesis Toolkit (JMIST)
* Copyright (C) 2008-2013 Bradley W. Kimmel
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
package ca.eandb.jmist.framework.geometry;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import ca.eandb.jmist.framework.SceneElement;
import ca.eandb.jmist.framework.IntersectionRecorder;
import ca.eandb.jmist.math.Box3;
import ca.eandb.jmist.math.Ray3;
import ca.eandb.jmist.math.Sphere;

/**
* A <code>SceneElement</code> that is composed of component geometries.
* @author Brad Kimmel
*/
public class CompositeGeometry extends AbstractGeometry {

  /**
   * Serialization version ID.
   */
  private static final long serialVersionUID = 6883326155431617080L;

  public CompositeGeometry() {
    offsets.add(0);
  }

  /**
   * Adds a child <code>SceneElement</code> to this
   * <code>CompositeGeometry</code>.
   * @param child The child <code>SceneElement</code> to add.
   * @return A reference to this <code>CompositeGeometry</code> so that calls
   *     to this method may be chained.
   */
  public CompositeGeometry addChild(SceneElement child) {
    offsets.add(getNumPrimitives() + child.getNumPrimitives());
    children.add(child);
    return this;
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.Bounded3#boundingBox()
   */
  public Box3 boundingBox() {

    /* The default behavior is pessimistic (i.e., the result is the union
     * of the bounding boxes for each of the children.
     */
    Collection<Box3> boxes = new ArrayList<Box3>();

    for (SceneElement child : this.children) {
      boxes.add(child.boundingBox());
    }

    return Box3.smallestContaining(boxes);

  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.Bounded3#boundingSphere()
   */
  public Sphere boundingSphere() {

    /* The default behavior is to return the sphere that bounds the
     * bounding box.
     */
    Box3 boundingBox = this.boundingBox();

    return new Sphere(boundingBox.center(), boundingBox.diagonal() / 2.0);

  }

  /**
   * Gets the list of child geometries.
   * @return The <code>List</code> of child geometries.
   */
  protected final List<SceneElement> children() {
    return this.children;
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.SceneElement#getBoundingBox(int)
   */
  public Box3 getBoundingBox(int index) {
    int childIndex = getChildIndex(index);
    int offset = offsets.get(childIndex);
    SceneElement child = children.get(childIndex);
    return child.getBoundingBox(index - offset);
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.SceneElement#getBoundingSphere(int)
   */
  public Sphere getBoundingSphere(int index) {
    int childIndex = getChildIndex(index);
    int offset = offsets.get(childIndex);
    SceneElement child = children.get(childIndex);
    return child.getBoundingSphere(index - offset);
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.SceneElement#getNumPrimitives()
   */
  public int getNumPrimitives() {
    return offsets.get(offsets.size() - 1);
  }

  private int getChildIndex(int index) {
    if (index < 0 || index >= getNumPrimitives()) {
      throw new IndexOutOfBoundsException();
    }

    int childIndex = Collections.binarySearch(offsets, index);
    if (childIndex < 0) {
      childIndex = -(childIndex + 1);
    }

    return childIndex;
  }

  /* (non-Javadoc)
   * @see ca.eandb.jmist.framework.SceneElement#intersect(int, ca.eandb.jmist.math.Ray3, ca.eandb.jmist.framework.IntersectionRecorder)
   */
  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>();

  private final List<Integer> offsets = new ArrayList<Integer>();

}
TOP

Related Classes of ca.eandb.jmist.framework.geometry.CompositeGeometry

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.