All description tags filled

This commit is contained in:
Daniel 2018-04-19 16:27:32 +10:00
parent 000fd9fd96
commit 29799f36d0

View file

@ -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)
{