-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
35 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,17 @@ | ||
//! Visitors for performing geometric queries exploiting spatial partitioning data structures. | ||
#[cfg(feature = "std")] | ||
pub use self::aabb_sets_interferences_collector::AabbSetsInterferencesCollector; | ||
#[cfg(feature = "std")] | ||
pub use self::bounding_volume_intersections_simultaneous_visitor::BoundingVolumeIntersectionsSimultaneousVisitor; | ||
#[cfg(feature = "std")] | ||
pub use self::bounding_volume_intersections_visitor::BoundingVolumeIntersectionsVisitor; | ||
#[cfg(feature = "std")] | ||
pub use self::composite_closest_point_visitor::CompositeClosestPointVisitor; | ||
pub use self::composite_point_containment_test::CompositePointContainmentTest; | ||
#[cfg(feature = "std")] | ||
pub use self::point_intersections_visitor::PointIntersectionsVisitor; | ||
#[cfg(feature = "std")] | ||
pub use self::ray_intersections_visitor::RayIntersectionsVisitor; | ||
|
||
#[cfg(feature = "std")] | ||
mod aabb_sets_interferences_collector; | ||
#[cfg(feature = "std")] | ||
mod bounding_volume_intersections_simultaneous_visitor; | ||
#[cfg(feature = "std")] | ||
mod bounding_volume_intersections_visitor; | ||
#[cfg(feature = "std")] | ||
mod composite_closest_point_visitor; | ||
mod composite_point_containment_test; | ||
#[cfg(feature = "std")] | ||
mod point_intersections_visitor; | ||
#[cfg(feature = "std")] | ||
mod ray_intersections_visitor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters