arcade-physics
Version:
Use Arcade Physics without Phaser.
16 lines • 589 B
TypeScript
export default GetMidPoint;
/**
* Get the midpoint of the given line.
*
* @function Phaser.Geom.Line.GetMidPoint
* @since 3.0.0
*
* @generic {Phaser.Geom.Point} O - [out,$return]
*
* @param {Phaser.Geom.Line} line - The line to get the midpoint of.
* @param {(Phaser.Geom.Point|object)} [out] - An optional point object to store the midpoint in.
*
* @return {(Phaser.Geom.Point|object)} The midpoint of the Line.
*/
declare function GetMidPoint(line: Phaser.Geom.Line, out?: (Phaser.Geom.Point | object)): (Phaser.Geom.Point | object);
//# sourceMappingURL=GetMidPoint.d.ts.map