This commit is contained in:
yugecin 2016-09-27 20:38:18 +02:00
parent 15057b4d79
commit b933dd78d5

View File

@ -43,7 +43,7 @@ public abstract class Mover {
}
protected final double getT(int time) {
return (time - startT) / totalT;
return ((double)time - startT) / totalT;
}
public abstract double[] getPointAt(int time);