Class InterpolatingMicrosphere.FacetData

java.lang.Object
org.apache.commons.math3.analysis.interpolation.InterpolatingMicrosphere.FacetData
Enclosing class:
InterpolatingMicrosphere

private static class InterpolatingMicrosphere.FacetData extends Object
Data associated with each InterpolatingMicrosphere.Facet.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final double
    Illumination received from the sample.
    private final double
    Data value of the sample.
  • Constructor Summary

    Constructors
    Constructor
    Description
    FacetData(double illumination, double sample)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Get the illumination.
    double
    Get the data value.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • illumination

      private final double illumination
      Illumination received from the sample.
    • sample

      private final double sample
      Data value of the sample.
  • Constructor Details

    • FacetData

      FacetData(double illumination, double sample)
      Parameters:
      illumination - Illumination.
      sample - Data value.
  • Method Details

    • illumination

      public double illumination()
      Get the illumination.
      Returns:
      the illumination.
    • sample

      public double sample()
      Get the data value.
      Returns:
      the data value.