ncollide3d/query/point/
mod.rs

1//! Point inclusion and projection.
2
3#[doc(inline)]
4pub use self::point_query::{PointProjection, PointQuery, PointQueryWithLocation};
5pub use self::point_support_map::point_projection_on_support_map;
6
7mod point_aabb;
8mod point_ball;
9mod point_bounding_sphere;
10mod point_capsule;
11mod point_compound;
12mod point_cuboid;
13mod point_heightfield;
14mod point_plane;
15mod point_polyline;
16#[doc(hidden)]
17pub mod point_query;
18mod point_segment;
19mod point_shape;
20mod point_support_map;
21#[cfg(feature = "dim3")]
22mod point_tetrahedron;
23mod point_triangle;
24#[cfg(feature = "dim3")]
25mod point_trimesh;