parry3d/query/point/
mod.rs1#[doc(inline)]
4pub use self::point_query::{PointProjection, PointQuery, PointQueryWithLocation};
5#[cfg(feature = "alloc")]
6pub use self::point_support_map::local_point_projection_on_support_map;
7
8mod point_aabb;
9mod point_ball;
10mod point_bounding_sphere;
11mod point_capsule;
12#[cfg(feature = "alloc")]
13mod point_composite_shape;
14#[cfg(feature = "dim3")]
15mod point_cone;
16mod point_cuboid;
17#[cfg(feature = "dim3")]
18mod point_cylinder;
19mod point_halfspace;
20#[cfg(feature = "alloc")]
21mod point_heightfield;
22#[doc(hidden)]
23pub mod point_query;
24mod point_round_shape;
25mod point_segment;
26#[cfg(feature = "alloc")]
27mod point_support_map;
28#[cfg(feature = "dim3")]
29mod point_tetrahedron;
30mod point_triangle;
31#[cfg(feature = "alloc")]
32mod point_voxels;