aboutsummaryrefslogtreecommitdiff
path: root/src/geometry
diff options
context:
space:
mode:
Diffstat (limited to 'src/geometry')
-rw-r--r--src/geometry/collider.rs6
-rw-r--r--src/geometry/collider_set.rs6
2 files changed, 10 insertions, 2 deletions
diff --git a/src/geometry/collider.rs b/src/geometry/collider.rs
index f9088b3..eaca5a6 100644
--- a/src/geometry/collider.rs
+++ b/src/geometry/collider.rs
@@ -802,3 +802,9 @@ impl ColliderBuilder {
)
}
}
+
+impl Into<Collider> for ColliderBuilder {
+ fn into(self) -> Collider {
+ self.build()
+ }
+}
diff --git a/src/geometry/collider_set.rs b/src/geometry/collider_set.rs
index 556d190..61675d4 100644
--- a/src/geometry/collider_set.rs
+++ b/src/geometry/collider_set.rs
@@ -129,7 +129,8 @@ impl ColliderSet {
}
/// Inserts a new collider to this set and retrieve its handle.
- pub fn insert(&mut self, mut coll: Collider) -> ColliderHandle {
+ pub fn insert(&mut self, coll: impl Into<Collider>) -> ColliderHandle {
+ let mut coll = coll.into();
// Make sure the internal links are reset, they may not be
// if this rigid-body was obtained by cloning another one.
coll.reset_internal_references();
@@ -142,10 +143,11 @@ impl ColliderSet {
/// Inserts a new collider to this set, attach it to the given rigid-body, and retrieve its handle.
pub fn insert_with_parent(
&mut self,
- mut coll: Collider,
+ coll: impl Into<Collider>,
parent_handle: RigidBodyHandle,
bodies: &mut RigidBodySet,
) -> ColliderHandle {
+ let mut coll = coll.into();
// Make sure the internal links are reset, they may not be
// if this collider was obtained by cloning another one.
coll.reset_internal_references();