Results 170 issues of Moritz Mœller

See [here](https://github.com/ephtracy/voxel-model/blob/master/MagicaVoxel-file-format-vox-extension.txt) for format extensions. I tried the simple [visualization example](https://github.com/gromgull/py-vox-io/blob/master/examples/viz.py) with the `castle.vox` model that ships with MagicaVoxel. I get this: ``` 2019-05-17 15:00:59 foo.home pyvox.parser[26148] DEBUG Found chunk...

[NSI](https://nsi.readthedocs.io/) is a replacement for RenderMan Ri/RIB that was developed by Illumination Research for their 3Delight renderer. 3Delight used to be RenderMan compliant from 1999–2019. The NSI API is completely...

I am replacing this code in my `build.rs` (which works fine): ```rust let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap()); Command::new("./configure") .current_dir("ta-lib") .arg(format!("--prefix={}", out_dir.display())) .output() .expect("Failed to execute TA C library configure script"); Command::new("make")...

They still have the struct/method names from bevy 0.4.

documentation

# What I.e. I only want the lower left quadrant of the image I would specify a `ViewBox` with a `Rect::new(0.5, 0.5, 0.5, 0.5)`. `FitTo` would then pertain to the...

See subject. Eight bit/channel are not enough for most smooth gradients etc.

A lot of desktop apps in the 2D/3D DCC space now support double-clicking a widget to reset it to its default value. It would be great if `egui` had support...

feature-request

From the [official Rust naming guidelines](https://rust-lang.github.io/api-guidelines/naming.html): > Crate names should not use `-rs` or `-rust` as a suffix or prefix. Every crate is Rust! It serves no purpose to remind...

For example: `Enrique Rodr` correctly produces a bunch of suggestions for the late Argentinan musician Enrique Rodríguez. But typing: `Enrique Rodri` (one more letter, the ‘i’) makes the list go...

I.e. what good old `RiQuantize` does. I think it's safe to assume a *dither amplitude* of `0.5`. This should be built-in. I do not see anyone wanting to see banding...