HE_Mesh, a Java library for creating and manipulating polygonal meshes. Aimed primarily at Processing.
This fork hosts HE_Mesh as a fully mavenised dependency, making it much easier to use the library in Maven Java projects or make source code modifications.
NOTE this fork has not been extensively tested.
- Where applicable, code that once wrapped other libraries now references the original libraries directly.
(e.g. straight-skeleton functionality now references camp-skeleton (
org.twak.camp
) directly rather than thewblut.external.straightskeleton
wrapper). - HE_Mesh code once housed in
hemesh-external.jar
is now included in the source files (classes such asWB_JTS
,WB_QuickHull3D
, etc.).
HE_Mesh is hosted as an Maven artifact via Jitpack:
- Step 1. Add the JitPack repository to your build file
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- Step 2. Add the dependency
<dependency>
<groupId>com.github.micycle1</groupId>
<artifactId>HE_Mesh</artifactId>
<version>1.0.0</version>
</dependency>