Makogan
Makogan
Currently, it seems that rustgpu does not support operator overloading (there is no ops module under spirv_std, and none of the examples seem to do this). This is useful because...
I would find it useful if rust-builder could be compiled as a static library that could then be invoked from rust, C or C++. This has some possible advantages: *...
Can the library be built in linux or only Windows under Visual Studio?
This is probably the best PGA library for rust. There are a couple of things I'd like to suggest to make it better. In addition to generating points and ideal...
### Problem There should be a flag to instruct `cargo new` not to edit a workspace's root `Cargo.toml` by appending the crrate to its workspace members. [This PR](https://github.com/rust-lang/cargo/pull/13391) partially addresses...
It would be useful if the script needs dependencies that are attached to a specific rust version for one to be able to instruct which toolchain should be used.
Extended the prior macro to also allow for component wise division
Specifically [here](https://github.com/dimforge/nalgebra/blob/338a22b236161bdacab149d11173285788078b86/src/linalg/inverse.rs#L181). A determinant close to 0 would still cause numerical issues that can result in NAN's. I found out the hard way with his snippet: ```rs let intermediate =...
I think there's a gotcha situation in which the LU solver fails. ```rs let decomp = mat.lu(); let res = decomp.solve(&b).expect(format!("{} {}", mat, b).as_str()); ``` Consider the following linear system:...
https://docs.rs/spade/latest/spade/struct.ConstrainedDelaunayTriangulation.html The examples show: `let mut cdt = ConstrainedDelaunayTriangulation::::new();` But it seems that the current way to do this is `let mut cdt = ConstrainedDelaunayTriangulation::::default(); `