Java tutorial
//package com.java2s; //License from project: Open Source License public class Main { private static int getMiddleValue(int prev, int next, float factor) { return Math.round(prev + (next - prev) * factor); } }