Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 984 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 984 Bytes

Galmetry - A computational geometry library in Rust

Table of Contents

  1. Descritpion
  2. Roadmap
  3. Resources

Description

Galmetry is a rust crate that implements the most famous algorithms about computational geometry.

The crate is composed by 2 modules:

  • geometry: in this package there are all the structs rapresenting geometry stuff. If you need to model some geometrical data, you can pick a struct from here.

  • algorithm: in this package I'll put all the algorithms related to computational geometry topic. You can find the current state of the implementation in the roadmap

Roadmap

  • Convex Hull
  • Line Segment Intersaction
  • Triangulation

Resources

  1. "Computational Geometry: Algorithms and Applications" by Mark de Berg, Otfried Cheong, Marc van Kreveld and Mark Overmars.