Kyle Kauffman

Results 28 issues of Kyle Kauffman

### Description of the Change On the current develop branch, worldwind [limits the resolution of image tiles to 0.5m](https://github.com/NASAWorldWind/WebWorldWind/blob/develop/src/util/Tile.js#L329). When visualizing scenes which are low to the ground (such as...

### Description The default behavior for dragging with the right mouse button down is to rotate around a fixed point. At higher camera altitudes this appears to rotate around the...

Suppose I want to wrap ```cpp struct A {}; void foo(std::shared_ptr p){ } ``` If I wrap with ``` mod.add_type("A").constructor(); mod.method("foo", &foo); ``` Then trying to generate an `A` in...

Carryover issue from discussion in #83. Swapping dimension ordering is a useful operation outside of just matrices, and should probably have support in N-dimensional cases.

First brought up in #83. Having `a[55]` magically be a row-major wrapped index for Matrices (which otherwise require a 2D indexer) may be too magical, in light of the same...

Right now, all threads share the same global seed. This makes it difficult to reproduce results in multi-threaded code. If two threads are both grabbing random values at the same...

For normal distribution RNG.

It would be useful to implement some tests to check the rigor of our Gaussian and floating point random number streams, since the underlying PCG implementation we are based on...

Right now on K/native we currently just allow multiple threads to access the same mutable state, which will probably error out. We need some sort of thread-safe solution using K/native's...

For some applications such as Monte-Carlo, random number generation can be the bottleneck in performance. It would be useful to support a concurrent RNG that can generate numbers in multiple...