mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Update JSDoc, and some minor documentation changes.
This commit is contained in:
parent
16e42c68fd
commit
884a0c54ad
3 changed files with 4 additions and 4 deletions
|
@ -1 +1 @@
|
|||
Subproject commit f2224b7437812263c2fb071c71fb1d0a59c2e15b
|
||||
Subproject commit 3611eb9a23a4d55f15271811afe4bebcfeee6fe9
|
|
@ -797,7 +797,7 @@ var Color = Base.extend(new function() {
|
|||
/**
|
||||
* Returns the color as a CSS string.
|
||||
*
|
||||
* @param {Boolean} hex whether to return the color in hexadecial
|
||||
* @param {Boolean} hex whether to return the color in hexadecimal
|
||||
* representation or as a CSS RGB / RGBA string.
|
||||
* @return {String} a CSS string representation of the color
|
||||
*/
|
||||
|
|
|
@ -211,7 +211,7 @@ var Numerical = new function() {
|
|||
* @return {Number} the number of real roots found, or -1 if there are
|
||||
* infinite solutions
|
||||
*
|
||||
* @author Harikrishnan Gopalakrishnan
|
||||
* @author Harikrishnan Gopalakrishnan <hari.exeption@gmail.com>
|
||||
*/
|
||||
solveQuadratic: function(a, b, c, roots, min, max) {
|
||||
var count = 0,
|
||||
|
@ -298,7 +298,7 @@ var Numerical = new function() {
|
|||
* @return {Number} the number of real roots found, or -1 if there are
|
||||
* infinite solutions
|
||||
*
|
||||
* @author Harikrishnan Gopalakrishnan
|
||||
* @author Harikrishnan Gopalakrishnan <hari.exeption@gmail.com>
|
||||
*/
|
||||
solveCubic: function(a, b, c, d, roots, min, max) {
|
||||
var count = 0,
|
||||
|
|
Loading…
Reference in a new issue