mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
All description tags filled
This commit is contained in:
parent
000fd9fd96
commit
29799f36d0
1 changed files with 4 additions and 4 deletions
|
@ -7,17 +7,17 @@
|
|||
var Point = require('../point/Point');
|
||||
|
||||
/**
|
||||
* [description]
|
||||
* Returns a random point on a given line
|
||||
*
|
||||
* @function Phaser.Geom.Line.Random
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @generic {Phaser.Geom.Point} O - [out,$return]
|
||||
*
|
||||
* @param {Phaser.Geom.Line} line - [description]
|
||||
* @param {(Phaser.Geom.Point|object)} [out] - [description]
|
||||
* @param {Phaser.Geom.Line} line - The Line to calculate the random Point on
|
||||
* @param {(Phaser.Geom.Point|object)} [out] - An instance of a Point to be modified
|
||||
*
|
||||
* @return {(Phaser.Geom.Point|object)} [description]
|
||||
* @return {(Phaser.Geom.Point|object)} A random Point on the Line
|
||||
*/
|
||||
var Random = function (line, out)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue