ThomasCartier
ThomasCartier
Hi, ``` static_assert( FLATBUFFERS_VERSION_MAJOR == 23 && FLATBUFFERS_VERSION_MINOR == 5 && FLATBUFFERS_VERSION_REVISION == 26, "Non-compatible flatbuffers version included" ); ``` Given this simplified schema: ``` table A{ field1: uint32; }...
Hi, The following code reports wrong letters (they are added by 4 for some reasons) The culprit: [https://www.dropbox.com/scl/fi/6a8zuy70s05pntvxm0vae/test.pdf?rlkey=ylju1wbavr8rff10jp621u6bo&dl=0](url) It reports DEF instead of ABC. ``` #[cfg(any(feature = "pom_parser", feature =...
Hi, Not very experienced in Rust, ``` for skin in import.doc.skins() { let name = skin.name().map(|name| name.into()); let joint_node_indices: Vec = skin.joints().map(|j| j.index()).collect(); for node_index in joint_node_indices.iter().cloned() { nodes[node_index].is_joint =...
Hi, I think the doc is lacking a note on the parameters to use for better representation of the underlying mesh. The original project [has it](https://github.com/kmammou/v-hacd?tab=readme-ov-file#tuning-parameters) but the issue is...
## Feature Request Hi, I think it would be nice to have a way to concatenate multiple translation files in an easy API. Currently this is what I have: ```...
Hi, I am pretty sure there is a simple workaround, but for the following code: ``` #[derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize, Hash, PartialEq, Eq)] pub enum MyTypes { Unset, TypeA } fn...
Hi, dx 0.6.0 alpha1 from git. executing a `dx clean` also deletes the artifacts folder. On my system, it happens to be a shared artifacts folder (out of tree), so...
Hi, There is a panic occurring when compiling with the main branch of the cli (0.6.0 alpha1) ``` thread 'tokio-runtime-worker' panicked at packages/cli/src/builder/prepare_html.rs:164:83: called `Result::unwrap()` on an `Err` value: StripPrefixError(())...
Hi, I posted in rust-analyzer repo an issue that occurs from v2029 and code LLDB: no breakpoints are respected, the code just flows when clicking the debug inlay button. The...
Hi, do you think we can: 1. Create a surface mesh type: when using a difference for example, the mesh would still be empty inside. Nice for 3d printing as...