aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Crozet <sebcrozet@dimforge.com>2024-01-24 22:50:07 +0100
committerSébastien Crozet <sebcrozet@dimforge.com>2024-01-24 22:50:07 +0100
commit5bf398389449978ae168bf26be76726472253fb2 (patch)
tree5faa56e6369f376ba170e51d8ce046f5d954db0d /src
parent51f5bd6cb466fa65ee755c1905e46ff405217143 (diff)
downloadrapier-5bf398389449978ae168bf26be76726472253fb2.tar.gz
rapier-5bf398389449978ae168bf26be76726472253fb2.tar.bz2
rapier-5bf398389449978ae168bf26be76726472253fb2.zip
feat: re-export BoundingVolume, RayCast, PointQuery, PointQueryWithlocation from parry.
Diffstat (limited to 'src')
-rw-r--r--src/geometry/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/geometry/mod.rs b/src/geometry/mod.rs
index a91c4b9..1525211 100644
--- a/src/geometry/mod.rs
+++ b/src/geometry/mod.rs
@@ -17,7 +17,9 @@ pub use self::narrow_phase::NarrowPhase;
pub use self::collider::{Collider, ColliderBuilder};
pub use self::collider_set::ColliderSet;
-pub use parry::query::TrackedContact;
+pub use parry::bounding_volume::BoundingVolume;
+pub use parry::query::{PointQuery, PointQueryWithLocation, RayCast, TrackedContact};
+pub use parry::shape::SharedShape;
use crate::math::{Real, Vector};
@@ -53,7 +55,6 @@ pub type RayIntersection = parry::query::RayIntersection;
pub type PointProjection = parry::query::PointProjection;
/// The the time of impact between two shapes.
pub type TOI = parry::query::TOI;
-pub use parry::shape::SharedShape;
bitflags::bitflags! {
/// Flags providing more information regarding a collision event.