forked from gre/easing.js
Simple Easing Functions in Javascript - see http://greweb.me/2012/02/bezier-curve-based-easing-functions-from-concept-to-implementation/
| *.json diff=json |
forked from gre/easing.js
Simple Easing Functions in Javascript - see http://greweb.me/2012/02/bezier-curve-based-easing-functions-from-concept-to-implementation/
| #!/bin/bash | |
| BASEDIR=`dirname $0` | |
| CMDNAME=`basename $0` | |
| # 引数の数チェック 例の場合3つあるか確認 | |
| if [ $# -ne 3 ]; then | |
| echo "Usage $CMDNAME <RARAM1> <RARAM2> <RARAM3>" | |
| exit 1 | |
| fi |
| @echo off | |
| set BASEDIR=%~dp0 | |
| set CMDNAME=%0 | |
| rem 引数の数チェック 例の場合3つあるか確認 | |
| if "%3" EQU "" ( | |
| echo "Usage %CMDNAME% <RARAM1> <RARAM2> <RARAM3>" | |
| exit /b 1 | |
| ) |