org.jeometry.geom3D.algorithm.ConvexDecomposition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeometry-api Show documentation
Show all versions of jeometry-api Show documentation
Jeometry, a Mathematic and Geometry library for Java
package org.jeometry.geom3D.algorithm;
import org.jeometry.Jeometry;
/**
* This class enable to compute a convex decomposition for a given polyhedron.
*
* The convex decomposition split a non convex polyhedron is a set of convex polyhedra such
* that their union is the original polyhedra.
* This class implements the algorithm given in
* "An Algorithm for Convex Decomposition for polyedral object", Proceeding of the Seventh
* International conference on computer aided Design
* and Computer Graphics, International Academic Publishers, August 22-24 2001
* by Wang Fei, LIU Wen-Yu, Li Huain
.
* @author Julien Seinturier - COMEX S.A. - [email protected] - https://github.com/jorigin/jeometry
* @version {@value Jeometry#version}
* @since 1.0.0
*/
public class ConvexDecomposition {
//TODO Implements ConvexDecomposition class
}