このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

2013-08-12から1日間の記事一覧

JavaScriptのクラスもどきと、図形のアフィン変換ライブラリ (2)

関数 /* -*- coding: utf-8 -*- */ /* kk.js */ function f1(n) { return (n + 1); } var f2 = function(n) { return (n + 1); } function f3(n) { this.result = n + 1; return this.result; } function f4(n) { this.result = n + 1; } function f5(n) { t…