spelling: vertex

This commit is contained in:
Josh Soref 2019-10-29 02:41:21 -04:00
parent ca65399c13
commit 02a7169129

View file

@ -15,8 +15,8 @@ var Triangle = require('./Triangle');
*
* @generic {Phaser.Geom.Triangle[]} O - [out,$return]
*
* @param {array} data - A flat array of vertice coordinates like [x0,y0, x1,y1, x2,y2, ...]
* @param {array} [holes=null] - An array of hole indices if any (e.g. [5, 8] for a 12-vertice input would mean one hole with vertices 57 and another with 811).
* @param {array} data - A flat array of vertex coordinates like [x0,y0, x1,y1, x2,y2, ...]
* @param {array} [holes=null] - An array of hole indices if any (e.g. [5, 8] for a 12-vertex input would mean one hole with vertices 57 and another with 811).
* @param {number} [scaleX=1] - [description]
* @param {number} [scaleY=1] - [description]
* @param {(array|Phaser.Geom.Triangle[])} [out] - [description]