Wendell Smith

Results 13 issues of Wendell Smith

After a quick check, it appears that construct works to some degree after running the 2to3 tool... Cstring and Repeater objects can be created, can parse, and can build. However,...

Right now, when using `:source-highlighter: pygments`, the background color of the code blocks will still be the color of the `zenburn` background, and not the appropriate one from `pygments`. This...

:bug: bug
✔️ compliance
🙋 need info

Right now, spheres have a "resolution" of 20 x 20 faces, which are often quite visible. Creating a sphere with more than 20x20 faces (say, 40x40) is a bit challenging:...

enhancement

ArcBall already has methods for `pitch()`, `set_pitch()`, `yaw()`, `set_yaw()`, `dist()`, and `set_dist()`; it seems like it should also have corresponding functions for `fov()` and `set_fov()`.

Right now, if you were to try and make `examples/camera.rs` into its own crate, you run into a dependency problem. `camera.rs` includes the line `use glfw`, which means that if...

It would be nice to have an orthographic projection option for the ArcBall and maybe FirstPerson cameras. Alternatively, if one could set a "zoom" as well as the "distance" for...

The default material / lighting currently draws all materials as having a roughly "pastel" color, making them hard to distinguish. Perhaps adding several types of default materials (e.g., "glassy", "metallic",...

enhancement

I've been working on trying to write some additional documentation for this module ([here](https://github.com/wackywendell/primal/tree/more-doc)). This module already has great detail on the parts, but I was thinking it would be...

enhancement

This adds a function to `Sieve` to create a new `Sieve` instance that has at least `n` primes in it, for a given value of `n`. This also adds an...

Right now, Python 3 sees the setup.py and thinks there are two modules: `pyvoro` and `voroplusplus`, and installs them separately. Unfortunately, this does not work with relative imports. I forked...