Here you can find the source of toXMinutes(float t)
public static int toXMinutes(float t)
//package com.java2s; //License from project: Open Source License public class Main { public static int toXMinutes(float t) { t = t / 60;/* w ww.j av a2s .c o m*/ return (int) (t); } }