Skip to content

Commit

Permalink
Fixed matrix3d log
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneypattison committed Jan 25, 2024
1 parent f2b4a5f commit c1a840d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/_lib/get-matrix3d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export default function getMatrix3d(src: Point[], dst: Point[]): number[] {

// Transpose since CSS.matrix3d is column major.
m = m.transpose();
console.log(Array.from(m));
console.log(m);
return m.to1DArray();
}

0 comments on commit c1a840d

Please sign in to comment.