Daniel Salvadori
Daniel Salvadori
Is there any reason behind this if-else block with the hardcoded `true` and a non-empty else block? https://github.com/schteppe/cannon.js/blob/569730f94a1d9da47967a24fad0323ef7d5b4119/src/shapes/ConvexPolyhedron.js#L525-L537 I assume it's just left over from refactoring?
Hi! First of all - great work with Cannon.js I've been porting some of the algorithms to the physics engine I'm building for [g3n](https://github.com/g3n/engine). I noticed some potential inefficiencies that...
Fixed the broken link to the [tensorflow im2txt model](https://github.com/tensorflow/models/tree/master/research/im2txt) (changed _"master/im2txt/im2txt"_ to _"master/research/im2txt"_).
Allow copying, cutting, and pasting text.
An asynchronous asset loading system should be implemented that allows for responsive loading screens. Need to create both a desktop and a browser backend behind the same interface.
Fixes https://github.com/AssemblyScript/assemblyscript/issues/2422.
Hi! Thanks for building AssemblyScript! I noticed that "upcast" and "downcast" are switched: https://github.com/AssemblyScript/assemblyscript/blob/53af0e02113f0c4cd84947465a8c5064d3a82786/src/compiler.ts#L3472-L3501 "Upcast" should be the straightforward, static case whereas "downcast" should be dynamic and more complex. No...