Here you can find the source of distance(float speed, float delta)
public static final float distance(float speed, float delta)
//package com.java2s; //License from project: Open Source License public class Main { public static final float distance(float speed, float delta) { return speed * delta; }/*from w w w . jav a2s . c o m*/ }