{"id":13849911,"url":"https://github.com/azrafe7/hxDelaunay","last_synced_at":"2025-07-12T21:32:24.938Z","repository":{"id":14167433,"uuid":"16873456","full_name":"azrafe7/hxDelaunay","owner":"azrafe7","description":"Delaunay triangulations, Voronoi, convex hull and more. Ported to Haxe 3 from https://github.com/sledorze/hxDelaunay (itself a port of the excellent https://github.com/nodename/as3delaunay)","archived":false,"fork":false,"pushed_at":"2021-11-26T01:53:33.000Z","size":5722,"stargazers_count":31,"open_issues_count":0,"forks_count":4,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-11-05T13:21:40.299Z","etag":null,"topics":["convex-hull","delaunay-triangulations","haxe","voronoi"],"latest_commit_sha":null,"homepage":"","language":"Haxe","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Resplendent/ResplendentSocial","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azrafe7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["azrafe7"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2014-02-15T22:39:02.000Z","updated_at":"2024-06-03T13:23:45.000Z","dependencies_parsed_at":"2022-08-28T23:12:18.367Z","dependency_job_id":null,"html_url":"https://github.com/azrafe7/hxDelaunay","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azrafe7%2FhxDelaunay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azrafe7%2FhxDelaunay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azrafe7%2FhxDelaunay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azrafe7%2FhxDelaunay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azrafe7","download_url":"https://codeload.github.com/azrafe7/hxDelaunay/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225839481,"owners_count":17532305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["convex-hull","delaunay-triangulations","haxe","voronoi"],"created_at":"2024-08-04T20:00:52.650Z","updated_at":"2024-11-22T03:30:22.706Z","avatar_url":"https://github.com/azrafe7.png","language":"Haxe","funding_links":["https://github.com/sponsors/azrafe7"],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"hxDelaunay\n==========\n\nPort to Haxe 3 of [sledorze/hxDelaunay](https://github.com/sledorze/hxDelaunay) (itself a port of the excellent [nodename/as3delaunay](https://github.com/nodename/as3delaunay)).\n\n[![click for js demo](screenshots/screenshot.png)](https://rawgit.com/azrafe7/hxdelaunay/master/bin/html5/bin/index.html)\n\n_click the image above to try the [demo](https://rawgit.com/azrafe7/hxdelaunay/master/bin/html5/bin/index.html) in the browser_\n\nNo external dependencies (demo still needs openfl). Tested on flash/js/cpp/neko.\n\n### Features: ###\n\n - [Voronoi diagram](http://en.wikipedia.org/wiki/Voronoi)\n - [Delaunay triangulation](http://en.wikipedia.org/wiki/Delaunay_triangulation)\n - [Convex hull](http://en.wikipedia.org/wiki/Convex_hull)\n - [Minimum spanning tree](http://en.wikipedia.org/wiki/Euclidean_minimum_spanning_tree)\n - [Onion](http://cgm.cs.mcgill.ca/~orm/ontri.html)\n\nSee original authors' links for details and licensing (MIT).\n\n\n### Update:\n\n- Delaunay triangulation visualization ([see JS code example](src/DemoJs.hx)).\n\n[![](screenshots/delaunay.png)](https://rawgit.com/azrafe7/hxDelaunay/master/bin/js/index.html)\n\n_click on image to see the code in action_\n\n## more screenshots\n\n![](screenshots/starry-night-320.png) ![](screenshots/starry-night-voronoi.png) ![](screenshots/mona-lisa-320.png) ![](screenshots/mona-lisa-hollow-voronoi.png)\n![](screenshots/girl-pearl-earring-320.png) ![](screenshots/girl-pearl-earring-voronoi.png) ![](screenshots/lena-320.png) ![](screenshots/lena-voronoi.png)\n\n\u003csup\u003e(well... I've cheated a bit in some of these, but not much ;)\u003c/sup\u003e\n\n# haxelib local use\n\nCurrently there is no haxelib, but you can use this git repo as a development directory:\n\n```\nhaxelib dev hxdelaunay path/to/folder\n```\n\nor use git directly:\n\n```\nhaxelib git hxdelaunay https://github.com/azrafe7/hxDelaunay.git\n```\n\ndon't forget to add it to your build file:\n\n```\n-lib hxdelaunay\n```\n\nor for **openfl**:\n\n```\n\u003chaxelib name=\"hxdelaunay\" /\u003e\n```\n\n\nCheck out the [openfl example](src/Demo.hx) for more information.\n\n\nOr a simpler [js code example](src/DemoJs.hx). See it in action here: [JavaScript example](https://rawgit.com/azrafe7/hxDelaunay/master/bin/js/index.html).\n\n**Enjoy!**\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazrafe7%2FhxDelaunay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazrafe7%2FhxDelaunay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazrafe7%2FhxDelaunay/lists"}