This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WebGLใๆธใใฆใฟใใในใใ | |
ใใ ใฎใใชใดใณ1ๆใๆธใใ ใใ | |
ใใใงใใ ใใถใฝใผในใ้ทใใปใปใ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (win, doc, exports) { | |
'use strict'; | |
/** | |
* ใฏใฉใน็ถๆฟ็จ้ขๆฐ | |
* child ... ๆดพ็ใฏใฉในใๆๅฎ | |
* _super ... ๅบๅบใฏใฉในใๆๅฎ | |
*/ | |
function extend(child, _super) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass/reset"; | |
li { | |
list-style: none; | |
} | |
$sideSize: 125px; | |
body, html { | |
height: 100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Animation Graph | |
ๆกไปถใงไฝฟใใฐใฉใใซใขใใกใผใทใงใณใไปๅ ใใใใใซไฝใฃใใขใใฏใ | |
ๆๅคใจใใๆใใซไปไธใใฃใใ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
padding: 0; | |
margin: 0; | |
} | |
canvas { | |
} | |
#wrapper { | |
width: 500px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ใใฏในใใฃใใใใณใฐใฎใในใ | |
Refer to: [2009-02-11 - ๆ้ใใฅใใซใใฉ็ ็ฉถไผ](http://d.hatena.ne.jp/gyuque/20090211#1234364019) | |
--- | |
ๅฐใใ ใใกใใทใฅไฝๆใๆไฝ้จๅใๆ้ฉๅใ | |
็ปๅใๅๅฒใใๅ ดๅใฏ้ ็นใ็ตใถ้ ็ชใฏๅบๅฎใซใชใใใใ | |
้ ็นใฎใคใณใใใฏในใฏ็นใซใชใใ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ใใฏในใใฃใใใใณใฐใฎใในใใใ็บๅฑใใฆใใกใใฃใจ็ซไฝ็ใซ่ฆใใ่ๆฏใฎ็ๆใใใฃใฆใฟใใ | |
ๅ็ใซ็ปๅใ็ๆใใใใใใใฉใใฉๆผซ็ป้ขจใซ่กจ็คบใใใใใๅๆๅๅฆ็ใๅฐใ้ใใงใใ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { background-color: #FFFFFF; font: 30px sans-serif; margin:0px;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{spawn, exec} = require 'child_process' | |
option '-o', '--output [DIR]', 'Output directory.' | |
option '-t', '--target [DIR]', 'Watch target directory.' | |
stdout_handler = (data) -> | |
console.log data.toString().trim() | |
build = (watch, output = 'js', target = '_src/coffee') -> | |
console.log 'Watching coffee scripts' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Disposal | |
constructor: -> | |
dispose: -> | |
@el?.parentNode?.removeChild @el | |
@el = null | |
@off?() | |
@disposeInternal.apply @, arguments | |
disposeInternal: -> |