Cameron Hart
Cameron Hart
Thanks @auscompgeek - lightning talks are certainly something we can consider. The last meetup was a bit shorter than expected, I thought the talks were going to be a bit...
Hi Clinton, we don't have our next meetup planned yet but I think we have enough speakers for that whenever it happens, so probably looking at our 2nd 2020 meetup...
The code looks simple enough but I'm not very familiar with bindgen so I have a few questions > It's a feature, instead of target_arch = "wasm32" because not everyone...
> Almost certainly no. But while wasm_bindgen implies target_arch = "wasm32", the other way around isn't true. In fact my guess would be that the vast majority of people compiling...
For the lint failure, in this case it's fine to add a `#[allow(clippy::too_many_arguments)]`
Ah congrats!
I was thinking about this when adding the `with_x` etc. methods, which would be an alternative to a set that mutates, So rather than `fn set_zy(&mut self, v: Vec2)` it...
Fixed in #584
If it's any consolation almost no one reads the contributing guide :) I really need to make an issue template directing people to discussions. I replied to your discussion thread...
It turns out this is not currently possible because Vec3::from_vec4 invokes deref to access the x,y & z values which can't be done in a const context. At some point...