Remove the `SINE_TABLE` array in `MathHelper`
altrisi opened this issue ยท 1 comments
Lithium replaces the sin
and cos
methods in MathHelper
, the only two places that access its SINE_TABLE
array. That means that the array is unused after that, however it is still kept in memory.
Suggestion to remove it or at least make it an empty array.