dimforge / parry

2D and 3D collision-detection library for Rust.
https://parry.rs
Apache License 2.0
567 stars 100 forks source link

Make `ArchivedAABB = AABB` #97

Closed bonsairobo closed 1 year ago

bonsairobo commented 2 years ago

Because AABB is POD you can do #[archive(as = "AABB")] in the struct definition and then users of archived buffers can get AABB with zero-copy deserialization.

sebcrozet commented 1 year ago

Fixed in #119