phaser/src/geom/line/ReflectAngle.js

25 lines
593 B
JavaScript
Raw Normal View History

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;