YgorSouza

Results 67 comments of YgorSouza

For what it's worth, I am practicing Rust by making a [simple GUI](https://gitlab.com/ygor.souza/poli/-/commit/2974a9fdb610d5b071c4963dc19508c68182445e) for converting between units, and I ran into some of these limitations. I originally wanted to take...

The `Mesh` has translate and rotate methods. Adding a scale method is trivial, and a matrix transform is probably fine as well, with something like nalgebra. https://github.com/emilk/egui/blob/9c4f55b1f4c87362decada09dffece832eea40aa/crates/epaint/src/mesh.rs#L271-L286 Calling these methods...

This is now available as of 0.23.

For what it's worth, here is how I handled plotting millions of points in my app: https://gitlab.com/ygor.souza/poli/-/blob/583a3f0ba2d6b0b195db8adef9d7fb70f88eeee6/src/tool/dynamical_system_simulator.rs#L378-399 It basically samples the data vector at the desired resolution using [PlotPoints::from_explicit_callback](https://docs.rs/egui/0.21.0/egui/widgets/plot/enum.PlotPoints.html#method.from_parametric_callback). The...

This could be updated to link to #3862 and #1485, which have PRs in progress.

I'd just like to add my 2c and point out a problem I had with the Rust wrapper, which I explained in . The Rust implementation makes it impossible to...

The only code I have is the one I posted in the Rust issue linked above. My application is similar to the one mentioned in https://github.com/libusb/hidapi/pull/576#issuecomment-1572088024. I have a single...

Is adding bitflags such a big deal? It's a pretty small dependency, and most egui projects probably already depend on it anyway (it appears 39 times in this repo's lock...

I think this also addresses #914.

> "does not make" doesn't mean it is broken. I remember 0 complains about this part. And I personally use HDIAPI both as a shared and as a static library...