Skip to main content

use_geometry/
prelude.rs

1/// Commonly used geometry items.
2pub use crate::{
3    Aabb2, Circle, GeometryError, Line2, Orientation2, Point2, Segment2, Triangle, Vector2,
4    aabb_from_points, distance_2d, distance_squared_2d, midpoint_2d, orientation_2d,
5    orientation_2d_with_tolerance, triangle_area, triangle_twice_area, triangle_twice_signed_area,
6    try_orientation_2d, try_orientation_2d_with_tolerance,
7};