voronoi-java

A lightweight java library for generating 2D Voronoi diagrams using Fortune's Algorithm

Лицензия

Лицензия

Категории

Категории

Java Языки программирования
Группа

Группа

de.alsclo
Идентификатор

Идентификатор

voronoi-java
Последняя версия

Последняя версия

1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

voronoi-java
A lightweight java library for generating 2D Voronoi diagrams using Fortune's Algorithm
Ссылка на сайт

Ссылка на сайт

https://github.com/aschlosser/voronoi-java
Система контроля версий

Система контроля версий

https://github.com/aschlosser/voronoi-java

Скачать voronoi-java

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/de.alsclo/voronoi-java/ -->
<dependency>
    <groupId>de.alsclo</groupId>
    <artifactId>voronoi-java</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/de.alsclo/voronoi-java/
implementation 'de.alsclo:voronoi-java:1.0'
// https://jarcasting.com/artifacts/de.alsclo/voronoi-java/
implementation ("de.alsclo:voronoi-java:1.0")
'de.alsclo:voronoi-java:jar:1.0'
<dependency org="de.alsclo" name="voronoi-java" rev="1.0">
  <artifact name="voronoi-java" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.alsclo', module='voronoi-java', version='1.0')
)
libraryDependencies += "de.alsclo" % "voronoi-java" % "1.0"
[de.alsclo/voronoi-java "1.0"]

Зависимости

provided (1)

Идентификатор библиотеки Тип Версия
org.projectlombok : lombok jar 1.16.12

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12

Модули Проекта

Данный проект не имеет модулей.

voronoi-java License Build Status

A lightweight java library for generating 2D Voronoi diagrams using Fortune's Algorithm

Usage

voronoi-java is available in the central maven repository:

    <dependency>
        <groupId>de.alsclo</groupId>
        <artifactId>voronoi-java</artifactId>
        <version>1.0</version>
    </dependency>

To get the latest version you can just clone the repository and install it into your local maven repository (see Building from Source).

Getting started

Use a code snippet like this:

    Collection<Point> points = ...
    Voronoi voronoi = new Voronoi(points);
    voronoi.getGraph();

Source Code

The latest source can be found here on GitHub. To clone the project:

git clone git://github.com/aschlosser/voronoi-java.git

Or download the latest archive.

Building from Source

This project can be built with the latest Java Development Kit and Maven. The command mvn package will build the project and will put the compiled JAR in target, and mvn install will copy it to your local Maven repository.

Contributing

Your help is welcome! Just open a pull request with your changes.

License

voronoi-java is licensed under the MIT License. Basically, you can do as you please as long as you include the original copyright notice. Please see the License.md file for details.

Credits

Most of the code is derived from the desciptions included in the book 'Computational Geometry: Algorithms and Applications' by Mark de Berg, Otfried Cheong, Marc van Kreveld and Mark Overmars (ISBN-13: 978-3540779735)

Версии библиотеки

Версия
1.0