Jeometry API

Jeometry, a Mathematic and Geometry library for Java

Лицензия

Лицензия

Группа

Группа

org.jorigin
Идентификатор

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

jeometry-api
Последняя версия

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

1.0.5
Дата

Дата

Тип

Тип

jar
Описание

Описание

Jeometry API
Jeometry, a Mathematic and Geometry library for Java
Система контроля версий

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

https://github.com/jorigin/jeometry

Скачать jeometry-api

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

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

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.jorigin : jcommon jar 1.0.13

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

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

Jeometry

A Java based Geometry toolkit. This library enable to deal with 2D/3D points, meshes and various algorithm.

Integration

Jeometry can be used as a Maven dependency or as a standalone library.

Maven

Jeometry is available at Maven Central.

To import the library, add the following parts to the maven project:

<!-- You can update the properties section with Jeometry version -->
<properties>
  <jeometry.version>1.0.6</jeometry.version> 
</properties>

<!-- The Jeometry API that contains all interfaces -->
<dependency>
  <groupId>org.jorigin</groupId>
  <artifactId>jeometry-api</artifactId>
  <version>${jeometry.version}</version>
</dependency>

<!-- (Optional) The Jeometry module that contains geometric algorithms implementations -->
<dependency>
  <groupId>org.jorigin</groupId>
  <artifactId>jeometry-algorithm</artifactId>
  <version>${jeometry.version}</version>
</dependency>

<!-- The Jeometry Simple implementation -->
<!-- At least one api implementation is needed -->
<dependency>
  <groupId>org.jorigin</groupId>
  <artifactId>jeometry-simple</artifactId>
  <version>${jeometry.version}</version>
</dependency>

Standalone

Jeometry can be used as standalone library by integrating the jars provided by a release to the classpath. Be carrefull to also integrate the JCommon dependency.

Usage

For a quick overwiew ot the library, please refer to the Getting Started.

For more information, tutorials and advanced uses, please check the Wiki.

Changes:

see changelog for details.

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

Версия
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0