mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Update JSDoc.
Now with proper Markdown support!
This commit is contained in:
parent
6262863d9f
commit
31297c359a
3 changed files with 7 additions and 7 deletions
|
@ -24,7 +24,8 @@ else
|
|||
fi
|
||||
|
||||
cd jsdoc-toolkit
|
||||
java -jar jsrun.jar app/run.js -c=conf/$MODE.conf -D="renderMode:$MODE"
|
||||
# TODO: jsdoc2 -c=conf/$MODE.conf -D="renderMode:$MODE"
|
||||
java -cp jsrun.jar:lib/* JsRun app/run.js -c=conf/$MODE.conf -D="renderMode:$MODE"
|
||||
cd ..
|
||||
|
||||
if [ $MODE = "docs" ]
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 38c2412ed3a7db867906f218e20d2a220c4bda03
|
||||
Subproject commit 7e4f5ce24f6e88130f8a87261d6491f0c036757a
|
|
@ -27,11 +27,10 @@
|
|||
* transforms source coordinates (x,y) into destination coordinates (x',y')
|
||||
* by considering them to be a column vector and multiplying the coordinate
|
||||
* vector by the matrix according to the following process:
|
||||
* <pre>
|
||||
* [ x ] [ a b tx ] [ x ] [ a * x + b * y + tx ]
|
||||
* [ y ] = [ c d ty ] [ y ] = [ c * x + d * y + ty ]
|
||||
* [ 1 ] [ 0 0 1 ] [ 1 ] [ 1 ]
|
||||
* </pre>
|
||||
*
|
||||
* [ x ] [ a b tx ] [ x ] [ a * x + b * y + tx ]
|
||||
* [ y ] = [ c d ty ] [ y ] = [ c * x + d * y + ty ]
|
||||
* [ 1 ] [ 0 0 1 ] [ 1 ] [ 1 ]
|
||||
*
|
||||
* This class is optimized for speed and minimizes calculations based on its
|
||||
* knowledge of the underlying matrix (as opposed to say simply performing
|
||||
|
|
Loading…
Reference in a new issue