| Modifier and Type | Field and Description |
|---|---|
static int |
packedInterpolationLength
The number of elements used to store the object into an array in its interpolatable form.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
convertPackedArrayForInterpolation(double[] packedArray,
double[] result)
Converts a packed array into a form suitable for interpolation.
|
static void |
convertPackedArrayForInterpolation(double[] packedArray,
int startingIndex,
double[] result)
Converts a packed array into a form suitable for interpolation.
|
static void |
convertPackedArrayForInterpolation(double[] packedArray,
int startingIndex,
int lastIndex,
double[] result)
Converts a packed array into a form suitable for interpolation.
|
static Object |
unpackInterpolationResult(double[] array,
double[] sourceArray)
Retrieves an instance from a packed array converted with PackableForInterpolation.convertPackedArrayForInterpolation.
|
static Object |
unpackInterpolationResult(double[] array,
double[] sourceArray,
int startingIndex)
Retrieves an instance from a packed array converted with PackableForInterpolation.convertPackedArrayForInterpolation.
|
static Object |
unpackInterpolationResult(double[] array,
double[] sourceArray,
int startingIndex,
int lastIndex)
Retrieves an instance from a packed array converted with PackableForInterpolation.convertPackedArrayForInterpolation.
|
static Object |
unpackInterpolationResult(double[] array,
double[] sourceArray,
int startingIndex,
int lastIndex,
Object result)
Retrieves an instance from a packed array converted with PackableForInterpolation.convertPackedArrayForInterpolation.
|
@JsProperty public static int packedInterpolationLength
@JsMethod
public static void convertPackedArrayForInterpolation(double[] packedArray,
double[] result)
packedArray - The packed array.result - The object into which to store the result.@JsMethod
public static void convertPackedArrayForInterpolation(double[] packedArray,
int startingIndex,
double[] result)
packedArray - The packed array.startingIndex - The index of the first element to be converted.result - The object into which to store the result.@JsMethod
public static void convertPackedArrayForInterpolation(double[] packedArray,
int startingIndex,
int lastIndex,
double[] result)
packedArray - The packed array.startingIndex - The index of the first element to be converted.lastIndex - The index of the last element to be converted.result - The object into which to store the result.@JsMethod public static Object unpackInterpolationResult(double[] array, double[] sourceArray)
array - The array previously packed for interpolation.sourceArray - The original packed array.@JsMethod public static Object unpackInterpolationResult(double[] array, double[] sourceArray, int startingIndex)
array - The array previously packed for interpolation.sourceArray - The original packed array.startingIndex - The startingIndex used to convert the array.@JsMethod public static Object unpackInterpolationResult(double[] array, double[] sourceArray, int startingIndex, int lastIndex)
array - The array previously packed for interpolation.sourceArray - The original packed array.startingIndex - The startingIndex used to convert the array.lastIndex - The lastIndex used to convert the array.@JsMethod public static Object unpackInterpolationResult(double[] array, double[] sourceArray, int startingIndex, int lastIndex, Object result)
array - The array previously packed for interpolation.sourceArray - The original packed array.startingIndex - The startingIndex used to convert the array.lastIndex - The lastIndex used to convert the array.result - The object into which to store the result.Copyright © 2019. All rights reserved.