pub struct PyIsland {
pub id: u32,
pub bodies: Vec<u32>,
pub constraints: Vec<u32>,
pub sleep_state: IslandSleepState,
pub quiet_frames: u32,
pub sleep_threshold: f64,
pub sleep_frames: u32,
}Expand description
An island groups bodies and constraints that can interact.
Fields§
§id: u32Unique island id.
bodies: Vec<u32>Handles of rigid bodies in this island.
constraints: Vec<u32>Handles of constraints in this island.
sleep_state: IslandSleepStateSleep state.
quiet_frames: u32Frames below the velocity threshold (used for sleep triggering).
sleep_threshold: f64Velocity threshold for sleeping (m/s and rad/s combined).
sleep_frames: u32Number of frames needed to trigger sleep.
Implementations§
Source§impl PyIsland
impl PyIsland
Sourcepub fn add_constraint(&mut self, constraint: u32)
pub fn add_constraint(&mut self, constraint: u32)
Add a constraint to the island.
Sourcepub fn update_sleep(&mut self, max_speed: f64)
pub fn update_sleep(&mut self, max_speed: f64)
Update sleep state given the maximum body speed this frame.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PyIsland
impl<'de> Deserialize<'de> for PyIsland
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PyIsland
impl RefUnwindSafe for PyIsland
impl Send for PyIsland
impl Sync for PyIsland
impl Unpin for PyIsland
impl UnsafeUnpin for PyIsland
impl UnwindSafe for PyIsland
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.