UNPKG
pixelarray2e131
Version:
latest (0.0.2)
0.0.2
0.0.1
Send a pixel array over streaming ACN E1.31
github.com/sudsy/pixelarray2E131
pixelarray2e131
/
lib
/
mapping
/
flipDiagonalFunction.js
8 lines
(6 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
//flipDiagonalFunction.js
module.exports =
function
(
fn
)
{
return
function
(
sourceX, sourceY, width, height
)
{
return
fn
(
sourceY, sourceX, height, width
)
; }; };