Java Distance Calculate distance(float speed, float delta)

Here you can find the source of distance(float speed, float delta)

Description

distance

License

Open Source License

Declaration

public static final float distance(float speed, float delta) 

Method Source Code

//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*/
}

Related

  1. Distance(final double[] minCorner, final double[] maxCorner)
  2. distance(final double[] p, final double[] q)
  3. distance(final double[] t1, final double[] t2)
  4. distance(final String c1, final String c2, final String c1Prev, final String c2Prev)
  5. distance(float aX, float aY, float bX, float bY)
  6. distance(float value1, float value2)
  7. distance(float value1, float value2)
  8. distance(float value1, float value2)
  9. distance(float x1, float x2, float y1, float y2)