Moritz Mœller
Moritz Mœller
I never get a crash log. Steps to repo (just tried): ``` # Assuming you are on macOS, # cloned https://github.com/virtualritz/rust-diffusion-limited-aggregation.git # and downloaded & installed 3Delight (I'm using 2.0.7...
Actually, I did get one; in Console: ``` Date/Time: 2020-05-05 04:38:46.819 +0200 OS Version: Mac OS X 10.15.4 (19E287) Report Version: 12 Anonymous UUID: 431E6A8B-D8DD-BC8A-E603-DC897D7AAD76 Sleep/Wake UUID: 08FA2E75-CEFB-4C83-883B-1FE9CBD40211 Time Awake...
So after fixing this (for others running into this, `tokio` needs the `full` feature enabled or the `main` macro to work), I get it to run and print: ``` Please...
For reference, my code now looks like this: ```rs use google_drive3 as drive3; use hyper; use hyper_rustls; use yup_oauth2 as oauth2; use drive3::DriveHub; use drive3::Error; use std::default::Default; #[tokio::main] async fn...
In my case the window is tiny and I can barely read the text. I have a 15" laptop with a 3.2k×2k res. screen. Somehow `inlyne` ignores my global UI...
Yes, I will get to it eventually. There are some blockers that have to do with the `nsi` crate. In the meantime you can use an overlay in your `Cargo.toml`:...
@donbright, do you want to open a PR to get the solids you added in your fork included with `0.2.8`?
@donbright did you check the [good old xscreensaver *polyhedra* module](https://github.com/Zygo/xscreensaver/blob/master/hacks/glx/polyhedra.c) for inspiration? I believe to recall they had a way there that was quiet compact.
This is a more telling example: ```rust use litcrypt2::*; use_litcrypt!(); fn main() { assert_eq!(lc!("\"hello\""), "\"hello\""); } ``` ``` thread 'main' panicked at src/main.rs:6:5: assertion `left == right` failed left: "\\\"hello\\\""...
> Do you know if it can run real-time? Absolutely. I ported it to a Maya plugin over a decade ago and it ran realtime, CPU-only, then.