mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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
|
fi
|
||||||
|
|
||||||
cd jsdoc-toolkit
|
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 ..
|
cd ..
|
||||||
|
|
||||||
if [ $MODE = "docs" ]
|
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')
|
* transforms source coordinates (x,y) into destination coordinates (x',y')
|
||||||
* by considering them to be a column vector and multiplying the coordinate
|
* by considering them to be a column vector and multiplying the coordinate
|
||||||
* vector by the matrix according to the following process:
|
* vector by the matrix according to the following process:
|
||||||
* <pre>
|
*
|
||||||
* [ x ] [ a b tx ] [ x ] [ a * x + b * y + tx ]
|
* [ x ] [ a b tx ] [ x ] [ a * x + b * y + tx ]
|
||||||
* [ y ] = [ c d ty ] [ y ] = [ c * x + d * y + ty ]
|
* [ y ] = [ c d ty ] [ y ] = [ c * x + d * y + ty ]
|
||||||
* [ 1 ] [ 0 0 1 ] [ 1 ] [ 1 ]
|
* [ 1 ] [ 0 0 1 ] [ 1 ] [ 1 ]
|
||||||
* </pre>
|
|
||||||
*
|
*
|
||||||
* This class is optimized for speed and minimizes calculations based on its
|
* This class is optimized for speed and minimizes calculations based on its
|
||||||
* knowledge of the underlying matrix (as opposed to say simply performing
|
* knowledge of the underlying matrix (as opposed to say simply performing
|
||||||
|
|
Loading…
Reference in a new issue