com.gempukku.libgdx.graph.pipeline.producer.math.exponential.ExponentialBase2PipelineNodeProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libgdx-graph Show documentation
Show all versions of libgdx-graph Show documentation
libGDX-graph runtime library for pipeline rendering
The newest version!
package com.gempukku.libgdx.graph.pipeline.producer.math.exponential;
import com.gempukku.libgdx.graph.pipeline.config.math.exponential.ExponentialBase2PipelineNodeConfiguration;
import com.gempukku.libgdx.graph.pipeline.producer.math.SingleParamMathFunctionPipelineNodeProducerImpl;
public class ExponentialBase2PipelineNodeProducer extends SingleParamMathFunctionPipelineNodeProducerImpl {
public ExponentialBase2PipelineNodeProducer() {
super(new ExponentialBase2PipelineNodeConfiguration());
}
@Override
protected float executeFunction(float value) {
return (float) Math.pow(2, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy