Package ca.eandb.jmist.framework.material

Source Code of ca.eandb.jmist.framework.material.MaterialUtil

/**
* 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.material;

import ca.eandb.jmist.framework.color.Color;
import ca.eandb.jmist.framework.color.ColorModel;
import ca.eandb.jmist.framework.color.WavelengthPacket;
import ca.eandb.jmist.math.Complex;
import ca.eandb.jmist.math.Optics;
import ca.eandb.jmist.math.Vector3;

/**
* Static utility methods for materials.
* @author Brad Kimmel
*/
final class MaterialUtil {

  /**
   * Computes the reflectance at an interface between two dielectrics for
   * each channel.
   * @param in The incident direction.
   * @param n1 A <code>Color</code> whose channel values represent the
   *     refractive indices of the medium on the side of the interface
   *     pointed to by <code>normal</code>.
   * @param n2 A <code>Color</code> whose channel values represent the
   *     refractive indices of the medium on the side of the interface
   *     pointed to by <code>normal.opposite()</code>.
   * @param normal The interface normal.
   * @return A <code>Color</code> whose channel values represent the
   *     reflectances at the interface.
   * @see ca.eandb.jmist.math.Vector3#opposite()
   */
  public static Color reflectance(Vector3 in, Color n1, Color n2, Vector3 normal) {
    ColorModel colorModel = n1.getColorModel();
    WavelengthPacket lambda = n1.getWavelengthPacket();

    double[] n1d = n1.toArray();
    double[] n2d = n2.toArray();

    for (int i = 0; i < n1d.length; i++) {
      n1d[i] = Optics.reflectance(in, n1d[i], n2d[i], normal);
    }

    return colorModel.fromArray(n1d, lambda);
  }

  /**
   * Computes the reflectance at an interface between two conductors for
   * each channel.
   * @param in The incident direction.
   * @param n1 A <code>Color</code> whose channel values represent the real
   *     part of the refractive indices of the medium on the side of the
   *     interface pointed to by <code>normal</code>.
   * @param k1 A <code>Color</code> whose channel values represent the
   *     extinction indices (i.e., the imaginary part of the refractive
   *     indices) of the medium on the side of the interface pointed to by
   *     <code>normal</code>.  This value may be <code>null</code>.  If
   *     <code>k1 == null</code>, the extinction index is assumed to be zero
   *     on all channels.
   * @param n2 A <code>Color</code> whose channel values represent the real
   *     part of the refractive indices of the medium on the side of the
   *     interface pointed to by <code>normal.opposite()</code>.
   * @param k1 A <code>Color</code> whose channel values represent the
   *     extinction indices (i.e., the imaginary part of the refractive
   *     indices) of the medium on the side of the interface pointed to by
   *     <code>normal.opposite()</code>.  This value may be
   *     <code>null</code>.  If <code>k2 == null</code>, the extinction
   *     index is assumed to be zero on all channels.
   * @param normal The interface normal.
   * @return A <code>Color</code> whose channel values represent the
   *     reflectances at the interface.
   * @see ca.eandb.jmist.math.Vector3#opposite()
   */
  public static Color reflectance(Vector3 in, Color n1, Color k1, Color n2, Color k2, Vector3 normal) {
    ColorModel colorModel = n1.getColorModel();
    WavelengthPacket lambda = n1.getWavelengthPacket();

    double[] n1d = n1.toArray();
    double[] k1d = k1 != null ? k1.toArray() : null;
    double[] n2d = n2.toArray();
    double[] k2d = k2 != null ? k2.toArray() : null;

    for (int i = 0; i < n1d.length; i++) {
      n1d[i] = Optics.reflectance(in,
          new Complex(n1d[i], k1d != null ? k1d[i] : 0.0),
          new Complex(n2d[i], k2d != null ? k2d[i] : 0.0),
          normal);
    }

    return colorModel.fromArray(n1d, lambda);
  }

  /** Private constructor to prevent creation of instances. */
  private MaterialUtil() {}

}
TOP

Related Classes of ca.eandb.jmist.framework.material.MaterialUtil

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.