| License |
License |
|---|---|
| GroupId | GroupIdcom.github.quickhull3d |
| ArtifactId | ArtifactIdquickhull3d |
| Version | Version1.0.0 |
| Type | Typejar |
| Description |
DescriptionA Robust 3D Convex Hull Algorithm in Java
This is a 3D implementation of QuickHull for Java, based on the original paper by Barber, Dobkin, and Huhdanpaa and the C implementation known as qhull. The algorithm has O(n log(n)) complexity, works with double precision numbers, is fairly robust with respect to degenerate situations, and allows the merging of co-planar faces.
|
| Project URL |
Project URL |
| Project Organization |
Project OrganizationJohn E. Lloyd |
| Source Code Management |
Source Code Management |
| Filename | Size |
|---|---|
| quickhull3d-1.0.0.pom | |
| quickhull3d-1.0.0.jar | 30 KB |
| quickhull3d-1.0.0-sources.jar | 26 KB |
| quickhull3d-1.0.0-javadoc.jar | 63 KB |
| Browse |
<!-- https://jarcasting.com/artifacts/com.github.quickhull3d/quickhull3d/ -->
<dependency>
<groupId>com.github.quickhull3d</groupId>
<artifactId>quickhull3d</artifactId>
<version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.quickhull3d/quickhull3d/
implementation 'com.github.quickhull3d:quickhull3d:1.0.0'
// https://jarcasting.com/artifacts/com.github.quickhull3d/quickhull3d/
implementation ("com.github.quickhull3d:quickhull3d:1.0.0")
'com.github.quickhull3d:quickhull3d:jar:1.0.0'
<dependency org="com.github.quickhull3d" name="quickhull3d" rev="1.0.0">
<artifact name="quickhull3d" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.quickhull3d', module='quickhull3d', version='1.0.0')
)
libraryDependencies += "com.github.quickhull3d" % "quickhull3d" % "1.0.0"
[com.github.quickhull3d/quickhull3d "1.0.0"]
| Group / Artifact | Type | Version |
|---|---|---|
| org.slf4j : slf4j-api | jar | 1.7.7 |
| Group / Artifact | Type | Version |
|---|---|---|
| org.slf4j : slf4j-simple | jar | 1.7.7 |
| junit : junit | jar | 4.11 |