Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
oatkiller committed Jan 13, 2020
1 parent da7ab7f commit eb1521c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,3 @@ export function translationTransformation([x, y]: Vector2): Matrix3 {
0, 0, 1
]
}

export function rotationTransformation(angleInRadians: number): Matrix3 {
// prettier-ignore
return [
Math.cos(angleInRadians), -Math.sin(angleInRadians), 0,
Math.sin(angleInRadians), Math.cos(angleInRadians), 0,
0, 0, 1
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/

import { createSelector } from 'reselect';
import { rotationTransformation } from '../../lib/transformation';
import {
DataState,
ProcessEvent,
Expand Down

0 comments on commit eb1521c

Please sign in to comment.