Moritz Mœller
Moritz Mœller
Pixar has an [undocumented extension for OBJ files](https://github.com/PixarAnimationStudios/OpenSubdiv/issues/1291) where tags can be stored in the OBJ. Commonly those are attached to vertices (or edges/edge chains, by specifying them through the...
Maybe the next major release could be a good point to overhaul naming? * Rename [`TOTP` to `Totp`](https://rust-lang.github.io/api-guidelines/naming.html#casing-conforms-to-rfc-430-c-case)? * Swap [`get_` prefixes](https://rust-lang.github.io/api-guidelines/naming.html#getter-names-follow-rust-convention-c-getter) for [`to_` prefixes](https://rust-lang.github.io/api-guidelines/naming.html#ad-hoc-conversions-follow-as_-to_-into_-conventions-c-conv)? Would you consider a PR...
``` Traceback (most recent call last): File "auto_stack.py", line 121, in stacked_image = stackImagesECC(file_list) File "auto_stack.py", line 25, in stackImagesECC s, M = cv2.findTransformECC(cv2.cvtColor(image,cv2.COLOR_BGR2GRAY), first_image, M, cv2.MOTION_HOMOGRAPHY) TypeError: findTransformECC() missing...
I saw that [`tinyobjloader`](https://github.com/tinyobjloader) lib has support for reading (but not interpreting) a seemingly undocumented OBJ extension from Pixar for storing crease chains. The `tinyobjloader` repo. has an [example OBJ](https://github.com/tinyobjloader/tinyobjloader/blob/release/models/catmark_torus_creases0.obj)....
### Describe the bug ``` flutter_rust_bridge_codegen create fl_test cd fl_test flutter run ``` Gives me: ``` Connected devices: Linux (desktop) • linux • linux-x64 • Ubuntu 23.10 6.5.11-060511-generic Chrome (web)...
This crate looks perfect for my use case but my data is of the above kind (and `u8`). I can ofc. just transmute the `u16`, [`f16`](https://docs.rs/half/1.4.0/half/struct.f16.html) and `f32` to `u8`....
* Updated Rust `edition` to 2021 and made resp. req. changes (`use` stuff, compiler feature). * Renamed the `use_std` feature to `std`; this is what popular crates commonly use nowadays....
EDIT: Just checking out this repo and doing a: ``` cargo test --features unstable ``` already produces the below issue: ``` running 5 tests test test_gt_f32 ... FAILED test test_gt_f64...
I get: ``` thread 'main' panicked at 'there is no reactor running, must be called from the context of a Tokio 1.x runtime', /Users/moritz/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.8.1/src/runtime/context.rs:18:26 note: run with `RUST_BACKTRACE=1` environment variable...
The [`document-features` crate](https://crates.io/crates/document-features) achieves a similar result as `cargo-rdme`. A typical `lib.rs` doc block using this looks like: ``` //! Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do...