
com.gempukku.libgdx.graph.pipeline.producer.math.arithmetic.DividePipelineNodeProducer 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.arithmetic;
import com.gempukku.libgdx.graph.pipeline.config.math.arithmetic.DividePipelineNodeConfiguration;
import com.gempukku.libgdx.graph.pipeline.producer.math.TwoParamMathFunctionPipelineNodeProducer;
public class DividePipelineNodeProducer extends TwoParamMathFunctionPipelineNodeProducer {
public DividePipelineNodeProducer() {
super(new DividePipelineNodeConfiguration());
}
@Override
protected float executeFunction(float a, float b) {
return a / b;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy