Skip to content

Commit

Permalink
Update plugins/_transforms.js
Browse files Browse the repository at this point in the history
Co-authored-by: Seth Falco <[email protected]>
  • Loading branch information
johnkenny54 and SethFalco authored Feb 4, 2024
1 parent 9320ec9 commit 0360117
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions plugins/_transforms.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,7 @@ const decomposeQRCD = (matrix) => {
const data = matrix.data;

// Where applicable, variables are named in accordance with the frederic-wang document referenced above.
const a = data[0];
const b = data[1];
const c = data[2];
const d = data[3];
const e = data[4];
const f = data[5];
const [ a, b, c, d, e, f ] = data;
const delta = a * d - b * c;
if (delta === 0) {
return;
Expand Down

0 comments on commit 0360117

Please sign in to comment.