Rename reset_internal_links -> reset_internal_references.

This commit is contained in:
Crozet Sébastien
2020-11-03 14:45:50 +01:00
parent 0cf59d78bd
commit c6af248e66
4 changed files with 4 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ impl RigidBody {
} }
} }
pub(crate) fn reset_internal_links(&mut self) { pub(crate) fn reset_internal_references(&mut self) {
self.colliders = Vec::new(); self.colliders = Vec::new();
self.joint_graph_index = RigidBodyGraphIndex::new(crate::INVALID_U32); self.joint_graph_index = RigidBodyGraphIndex::new(crate::INVALID_U32);
self.active_island_id = crate::INVALID_USIZE; self.active_island_id = crate::INVALID_USIZE;

View File

@@ -158,7 +158,7 @@ impl RigidBodySet {
pub fn insert(&mut self, mut rb: RigidBody) -> RigidBodyHandle { pub fn insert(&mut self, mut rb: RigidBody) -> RigidBodyHandle {
// Make sure the internal links are reset, they may not be // Make sure the internal links are reset, they may not be
// if this rigid-body was obtained by cloning another one. // if this rigid-body was obtained by cloning another one.
rb.reset_internal_links(); rb.reset_internal_references();
let handle = self.bodies.insert(rb); let handle = self.bodies.insert(rb);
let rb = &mut self.bodies[handle]; let rb = &mut self.bodies[handle];

View File

@@ -214,7 +214,7 @@ pub struct Collider {
} }
impl Collider { impl Collider {
pub(crate) fn reset_internal_links(&mut self) { pub(crate) fn reset_internal_references(&mut self) {
self.parent = RigidBodySet::invalid_handle(); self.parent = RigidBodySet::invalid_handle();
self.contact_graph_index = ColliderGraphIndex::new(crate::INVALID_U32); self.contact_graph_index = ColliderGraphIndex::new(crate::INVALID_U32);
self.proximity_graph_index = ColliderGraphIndex::new(crate::INVALID_U32); self.proximity_graph_index = ColliderGraphIndex::new(crate::INVALID_U32);

View File

@@ -62,7 +62,7 @@ impl ColliderSet {
) -> ColliderHandle { ) -> ColliderHandle {
// Make sure the internal links are reset, they may not be // Make sure the internal links are reset, they may not be
// if this rigid-body was obtained by cloning another one. // if this rigid-body was obtained by cloning another one.
coll.reset_internal_links(); coll.reset_internal_references();
coll.parent = parent_handle; coll.parent = parent_handle;
let parent = bodies let parent = bodies