mitchmindtree
mitchmindtree
I recommend checking out the [Window Coordinates tutorial](https://guide.nannou.cc/tutorials/basics/window-coordinates.html) in the guide too - hopefully it can give some tips for working comfortably with nannou's default coordinate system.
The `nannou` crate itself doesn't have any direct support for software rendering - the `Draw` API currently only has a `wgpu` target though there has been an SVG target in...
Thanks for the issue! You can avoid moving the points by doing something like this: ```rust draw.polyline() .weight(2.) .points(model.draw_list.iter().cloned()); ``` This feeds the `points` method with an iterator over the...
> I need a guarantee that there is one update() call for one view() call I can confirm that is the case. I *think* this is mentioned in the tutorials,...
Hi, would you mind providing an English translation of the message with as much detail as you can? I'm unfamiliar with Kaspersky. Do other user-built, user-installed Rust programs also trigger...
Hey thanks for the report! I've opened up a PR at #684 - hopefully it helps to clarify the state of things a little, and at least lets you get...
Also, these earlier compiler errors (`error[E0599]: no method named `to_rgba8` found for reference `&DynamicImage` in the current scope`) might imply that you have an older version of one of the...
Thanks all for reporting and sharing workarounds! @kmtr, the second issue you ran into sounds a lot like [this particularly nasty one](https://github.com/RustAudio/cpal/issues/383). It looks like `clang-sys` recently released a `1.x`...
Awesome, I think this would be an amazing contribution @AngelOnFira ! > If gifs are being generated on each commit that makes changes to the examples, then it will add...
Hey @Joe23232! 1. Technically, you can opt for whatever direction you'd like on this as nannou allows for working with custom wgpu graphics pipelines to do whatever you wish. However,...