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