2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-01-04 00:21:42 +00:00
|
|
|
var Angle = require('./Angle');
|
|
|
|
var NormalAngle = require('./NormalAngle');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the reflected angle between two lines.
|
|
|
|
* This is the outgoing angle based on the angle of Line 1 and the normalAngle of Line 2.
|
|
|
|
*/
|
2017-10-13 13:11:54 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Geom.Line.ReflectAngle
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Geom.Line} lineA - [description]
|
|
|
|
* @param {Phaser.Geom.Line} lineB - [description]
|
|
|
|
*
|
|
|
|
* @return {number} [description]
|
|
|
|
*/
|
2017-01-04 00:21:42 +00:00
|
|
|
var ReflectAngle = function (lineA, lineB)
|
|
|
|
{
|
|
|
|
return (2 * NormalAngle(lineB) - Math.PI - Angle(lineA));
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = ReflectAngle;
|