mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 22:52:14 +00:00
9 lines
134 B
JavaScript
9 lines
134 B
JavaScript
/**
|
|
* Negation blend mode.
|
|
*/
|
|
var Negation = function (a, b)
|
|
{
|
|
return 255 - Math.abs(255 - a - b);
|
|
};
|
|
|
|
module.exports = Negation;
|