Sybrand Aarnoutse

Results 4 comments of Sybrand Aarnoutse

Looking for [this method](https://docs.rs/noise/0.5.1/noise/trait.NoiseFn.html#tymethod.get)? `OpenSimplex` implements this trait multiple times: for [2D](https://docs.rs/noise/0.5.1/noise/struct.OpenSimplex.html#impl-NoiseFn%3CPoint2%3Cf64%3E%3E), [3D](https://docs.rs/noise/0.5.1/noise/struct.OpenSimplex.html#impl-NoiseFn%3CPoint3%3Cf64%3E%3E), and [4D](https://docs.rs/noise/0.5.1/noise/struct.OpenSimplex.html#impl-NoiseFn%3CPoint4%3Cf64%3E%3E). Bring the trait into scope with `use noise::NoiseFn;` When calling with a `Point2` (`[f64; 2]`)...

Right now I can't serialize a `RigidBody` so I'd have to extract all fields necessary for recreating (position, velocity, etc. though some like handle are impossible), put them into another...

Thanks for catching the issue so quickly, I hadn't thought about WASM-compatibility of serialization and was using the already existing feature `serde-serialize` but will now make another feature `trait-object-serialize` for...

Hi! My flake does indeed use a separate module system for config (so no `programs.nix-neovim.vim.g.showmode = false` but just `vim.g.showmode = false`). Doing this is surprisingly easy as you can...