Trait ncollide3d::pipeline::object::CollisionObjectRef [−][src]
pub trait CollisionObjectRef<N: RealField> { fn graph_index(&self) -> Option<CollisionObjectGraphIndex>; fn proxy_handle(&self) -> Option<BroadPhaseProxyHandle>; fn position(&self) -> &Isometry<N>; fn predicted_position(&self) -> Option<&Isometry<N>>; fn shape(&self) -> &dyn Shape<N>; fn collision_groups(&self) -> &CollisionGroups; fn query_type(&self) -> GeometricQueryType<N>; fn update_flags(&self) -> CollisionObjectUpdateFlags; fn compute_aabb(&self) -> AABB<N> { ... } fn compute_swept_aabb(&self) -> AABB<N> { ... } }
Trait implemented by collision objects.
Required methods
fn graph_index(&self) -> Option<CollisionObjectGraphIndex>
[src]
The interaction graph index of this collision object, if it has been registered into an interaction graph.
Se the glue::create_proxies
for more details.
fn proxy_handle(&self) -> Option<BroadPhaseProxyHandle>
[src]
The broad-phase proxy handle of this collision object, if it has been registered into a broad-phase.
Se the glue::create_proxies
for more details.
fn position(&self) -> &Isometry<N>
[src]
The position of this collision object.
fn predicted_position(&self) -> Option<&Isometry<N>>
[src]
The expected position of this collision object in the next updates.
This is used to enlarge the collision object bounding volume such that at yields more potential interaction pairs. This is typically needed for CCD (continuous collision detection) to be sure the broad-phase does not miss pential interactions in-between two discontinuous positions of the collision object.
fn shape(&self) -> &dyn Shape<N>
[src]
The shape of this collision object.
fn collision_groups(&self) -> &CollisionGroups
[src]
The collision groups of this collision object.
fn query_type(&self) -> GeometricQueryType<N>
[src]
The type of geometric queries this collision object is subjected to.
fn update_flags(&self) -> CollisionObjectUpdateFlags
[src]
Flags indicating what changed in this collision object.
Provided methods
fn compute_aabb(&self) -> AABB<N>
[src]
Computes the AABB of this collision object, ignoring self.predicted_position()
.
fn compute_swept_aabb(&self) -> AABB<N>
[src]
Computes the swept AABB of this collision object, taking self.predict_position()
into account.
Given the AABB of this collision object at the position self.position()’, and the AABB of this collision object at the position
self.predicted_position()`, this returns an AABB that
bounds both.
Implementors
impl<N: RealField, T> CollisionObjectRef<N> for CollisionObject<N, T>
[src]
impl<N: RealField, T> CollisionObjectRef<N> for CollisionObject<N, T>
[src]