Project

delaunator

0.0
No commit activity in last 3 years
No release in over 3 years
Delaunay triangulation of 2D points
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
~> 0.12.2
~> 10.0
~> 3.0
 Project Readme

Gem Version Build Status

Delaunay Triangulation

This is a port of Mapbox's Delaunator project.

Installation

Add this line to your application's Gemfile:

gem 'delaunator'

And then execute:

$ bundle

Or install it yourself as:

$ gem install delaunator

Usage

Delaunator.triangulate() returns an array of triangle vertex indices (each group of three numbers forms a triangle). All triangles are directed counterclockwise.

points = [[382, 302], [382, 328], [382, 205], [623, 175], [382, 188], [382, 284], [623, 87], [623, 341], [141, 227]]
triangles = Delaunator.triangulate(points)
# => [2, 3, 4, 2, 5, 3, 5, 7, 3, 3, 6, 4, 0, 7, 5, 1, 7, 0, 0, 8, 1, 5, 8, 0, 2, 8, 5, 4, 8, 2, 6, 8, 4]

You can then use these indices to get the coordinates of each triangle:

(0..triangles.length-1).step(3) do |i|
    ax, ay = points[triangles[i]]
    bx, by = points[triangles[i + 1]]
    cx, cy = points[triangles[i + 2]]
    # (ax, ay), (bx, by), (cx, cy) are your triangle points
    ...

After implementing your own render function you can show the edges of the Delaunay triangulation:

image

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/hendrixfan/delaunator-ruby.

License

The gem is available as open source under the terms of the MIT License.