All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.treblereel.gwt.three4g.math.interpolants.LinearInterpolant Maven / Gradle / Ivy

package org.treblereel.gwt.three4g.math.interpolants;

import jsinterop.annotations.JsType;
import org.treblereel.gwt.three4g.math.Interpolant;

/**
 * LinearInterpolant
 * @author Dmitrii Tikhomirov
 * Created by treblereel on 5/13/18.
 */
@JsType(isNative = true, namespace = "THREE")
public class LinearInterpolant extends Interpolant {
    /**
     * @param parameterPositions -- array of positions
     * @param sampleValues       -- array of samples
     * @param sampleSize         -- number of samples
     * @param resultBuffer       -- buffer to store the interpolation results.
     */
    public LinearInterpolant(float[] parameterPositions, float[] sampleValues, int sampleSize, float[] resultBuffer) {

    }

    /**
     * @param parameterPositions -- array of positions
     * @param sampleValues       -- array of samples
     * @param sampleSize         -- number of samples
     * @param resultBuffer       -- buffer to store the interpolation results.
     */
    public LinearInterpolant(Float[] parameterPositions, Float[] sampleValues, int sampleSize, Float[] resultBuffer) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy