文件操作 - Circ.as
返回文件管理
返回主菜单
删除本文件
文件: /home/tecnoht/public_html/gigisantamaria--com/--old19965547/oldfile/com/robertpenner/easing/Circ.as
编辑文件内容
class com.robertpenner.easing.Circ { function Circ() { } // End of the function static function easeIn(t, b, c, d) { t = t / d; return (-c * (Math.sqrt(1 - t * t) - 1) + b); } // End of the function static function easeOut(t, b, c, d) { t = t / d - 1; return (c * Math.sqrt(1 - (t) * t) + b); } // End of the function static function easeInOut(t, b, c, d) { t = t / (d / 2); if (t < 1) { return (-c / 2 * (Math.sqrt(1 - t * t) - 1) + b); } // end if t = t - 2; return (c / 2 * (Math.sqrt(1 - (t) * t) + 1) + b); } // End of the function static function easeOutIn(t, b, c, d) { t = t / (d / 2); if (t < 1) { return (c / 2 * Math.sqrt(1 - --t * t) + b); } // end if return (c / 2 * (2 - Math.sqrt(1 - --t * t)) + b); } // End of the function } // End of Class
修改文件时间
将文件时间修改为当前时间的前一年
删除文件