We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I outlined bigger problem in #1, but a quick fix to reduce RAM consumption for the lib is to:
// Skipping S from HSL // var cubes = sides * sides * sides * sides * sides * sides * sides; var cubes:number = sides * sides * sides * sides * sides * sides * sides;
It looks like a typo - there is one extra * sides.
* sides
Again, thanks for the library - it works great, but some memory can be saved!
The text was updated successfully, but these errors were encountered:
Oh, yes it is a 192 KB heavy typo. Thanks!
Sorry, something went wrong.
It's also easily fixable by removing one of the sides. The lib is allocating 256 KB but using only 64KB.
fixing #1 and #2, updating build toolchain and dependencies
12d5ff8
fixing #1 and #2, updating build toolchain and dependencies (#3)
4302c3d
No branches or pull requests
I outlined bigger problem in #1, but a quick fix to reduce RAM consumption for the lib is to:
It looks like a typo - there is one extra
* sides
.Again, thanks for the library - it works great, but some memory can be saved!
The text was updated successfully, but these errors were encountered: