public class org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator implements org.apache.commons.math3.analysis.interpolation.MultivariateInterpolator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator
  super_class: java.lang.Object
{
  public static final int DEFAULT_MICROSPHERE_ELEMENTS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2000

  public static final int DEFAULT_BRIGHTNESS_EXPONENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private final int microsphereElements;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int brightnessExponent;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator this
         0: .line 65
            aload 0 /* this */
            sipush 2000
            iconst_2
            invokespecial org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator.<init>:(II)V
         1: .line 66
            return
        end local 0 // org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator;

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator this
        start local 1 // int elements
        start local 2 // int exponent
         0: .line 75
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 79
            iload 2 /* exponent */
            ifge 3
         2: .line 80
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            iload 2 /* exponent */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Ljava/lang/Number;)V
            athrow
         3: .line 82
      StackMap locals: org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator int int
      StackMap stack:
            iload 1 /* elements */
            ifgt 5
         4: .line 83
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            iload 1 /* elements */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Ljava/lang/Number;)V
            athrow
         5: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* elements */
            putfield org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator.microsphereElements:I
         6: .line 87
            aload 0 /* this */
            iload 2 /* exponent */
            putfield org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator.brightnessExponent:I
         7: .line 88
            return
        end local 2 // int exponent
        end local 1 // int elements
        end local 0 // org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator;
            0    8     1  elements  I
            0    8     2  exponent  I
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException
    MethodParameters:
          Name  Flags
      elements  final
      exponent  final

  public org.apache.commons.math3.analysis.MultivariateFunction interpolate(double[][], double[]);
    descriptor: ([[D[D)Lorg/apache/commons/math3/analysis/MultivariateFunction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator this
        start local 1 // double[][] xval
        start local 2 // double[] yval
         0: .line 99
            new org.apache.commons.math3.random.UnitSphereRandomVectorGenerator
            dup
            aload 1 /* xval */
            iconst_0
            aaload
            arraylength
            invokespecial org.apache.commons.math3.random.UnitSphereRandomVectorGenerator.<init>:(I)V
         1: .line 98
            astore 3 /* rand */
        start local 3 // org.apache.commons.math3.random.UnitSphereRandomVectorGenerator rand
         2: .line 100
            new org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolatingFunction
            dup
            aload 1 /* xval */
            aload 2 /* yval */
         3: .line 101
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator.brightnessExponent:I
         4: .line 102
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator.microsphereElements:I
         5: .line 103
            aload 3 /* rand */
         6: .line 100
            invokespecial org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolatingFunction.<init>:([[D[DIILorg/apache/commons/math3/random/UnitSphereRandomVectorGenerator;)V
            areturn
        end local 3 // org.apache.commons.math3.random.UnitSphereRandomVectorGenerator rand
        end local 2 // double[] yval
        end local 1 // double[][] xval
        end local 0 // org.apache.commons.math3.analysis.interpolation.MicrosphereInterpolator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator;
            0    7     1  xval  [[D
            0    7     2  yval  [D
            2    7     3  rand  Lorg/apache/commons/math3/random/UnitSphereRandomVectorGenerator;
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      xval  final
      yval  final
}
SourceFile: "MicrosphereInterpolator.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()