Jonah

Results 5 issues of Jonah

**Is your feature request related to a problem? Please describe.** Raycaster plugin doesn't seem to have TS typings, which results in a lot of guesswork: ![image](https://user-images.githubusercontent.com/8504168/177777064-81a9f8d0-9e4c-414b-b6f9-26898a49707a.png) As well as annoying...

feature-request

Current UI works, but it could be better.

enhancement

[Vector projection](https://en.wikipedia.org/wiki/Vector_projection) would be a very useful feature. It could work like so: ``` var a = new Victor(100, 150); var b = new Victor(300, 80); var projection = a.projectTo(b);...

Could we get a method for angle between two vectors?` Something like: ``` var v1 = new Victor(10, 10); var v2 = new Victor(20, 20); var angle = v1.angle(v2); ```...