6 releases

Uses old Rust 2015

0.3.0 Feb 10, 2021
0.2.1 Jan 29, 2021
0.1.2 Aug 25, 2018
0.1.1 Sep 3, 2017

#309 in Algorithms

Download history 245/week @ 2023-12-14 160/week @ 2023-12-21 103/week @ 2023-12-28 236/week @ 2024-01-04 341/week @ 2024-01-11 396/week @ 2024-01-18 623/week @ 2024-01-25 1019/week @ 2024-02-01 930/week @ 2024-02-08 1144/week @ 2024-02-15 955/week @ 2024-02-22 820/week @ 2024-02-29 827/week @ 2024-03-07 777/week @ 2024-03-14 725/week @ 2024-03-21 314/week @ 2024-03-28

2,802 downloads per month
Used in 6 crates (3 directly)

MIT license

1MB
20K SLoC

Rust 17K SLoC // 0.1% comments C 3K SLoC // 0.2% comments

geometry-predicates

A safe Rust port of "Adaptive Precision Floating-Point Arithmetic and Fast Robust Predicates for Computational Geometry"

Build Status Documentation Version License Downloads

This library provides a Rust solution to efficient exact geometry predicates used widely for computational geometry.

The following predicates are exposed at the root level:

  • orient2d
  • incircle
  • orient3d
  • insphere

Along with their approximate (inexact) counterparts:

  • orient2d_fast
  • incircle_fast
  • orient3d_fast
  • insphere_fast

In addition, the building blocks of these predicates, namely the adaptive precision floating-point arithmetic primitives are also exposed to allow for extensions to other predicates or exact geometric constructions.

This library supports no-std targets with standard IEEE 754 floats.

Background

These predicates have been a staple in computational geometry for many years now and are widely used in industry. In the context of geometry algorithms, it is often essential to determine the orientation of a point with respect to a line (or a plane) and whether a point lies inside a circle (or a sphere) or not. The reason why these tests often need to be exact is because many geometry algorithms ask questions (to determine orientation or in-circle/sphere) about point configurations that require consistent answers. For instance, if a, b, and c are three points on a 2D plane, to ask where b with respect to the line through a and c (left-of, right-of, or coincident) is the same as asking where a lies with respect to the line through c and b. Formally this condition can be written as

sgn(orient2d(a,c,b)) == sgn(orient2d(c,b,a))

Mathematically, predicates like orient2d are defined as

                                        ⎛⎡ax ay 1⎤⎞
orient2d([ax,ay],[bx,by],[cx,cy]) := det⎜⎢bx by 1⎥⎟
                                        ⎝⎣cx cy 1⎦⎠

It's easy to see that these predicates solve the problem of computing the determinant of small matrices with the correct sign, regardless of how close the matrix is to being singular.

For instance to compute the determinant of a matrix [a b; c d] with the correct sign, we can invoke

orient2d([a,b], [c,d], [0,0])

For more details please refer to Jonathan Shewchuk's original webpage for these predicates.

Caveats

These predicates do NOT handle exponent overflow [1], which means inputs with floats smaller than 1e-142 or larger than 1e201 may not produce accurate results. This is true for the original predicates in predicates.c as well as other Rust ports and bindings for these predicates.

References

Acknowledgements

This port was originally created by a C to Rust translator called Corrode. Without it, a full Rust port of this library would have been a daunting task. With that I would specifically like to thank the authors of Corrode for providing such a useful tool. Version 0.2 of this crate used the c2rust crate. The same gratitude goes towards the developers of C2Rust.

No runtime deps