rapier
rapier copied to clipboard
`ColliderBuilder` does not implement `Debug`
The ColliderBuilder
struct does not implement Debug
, while it is implemented for RigidBodyBuilder
, this seems like an oversight.
ColliderBuilder
currently does not implement Debug
mainly because it contains a trait-object for its shape. We could consider implementing Debug
for SharedShape
in parry
by matching on know objects types though.