Index
All Classes|All Packages
A
- addFace(IndexedFace<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
-
Attach this point to the given
mesh face. - addIndicentTetrahedron(Point3D, DelaunayTetrahedron<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Mark the given
tetrahedronas incident to the givenpoint. - addIndicentTetrahedron(Point3D, IndexedFace<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Add the given face as incident to the given point.
- addTetrahedron(int[]) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Add a tetrahedron to this Delaunay tetrahedralization.
- addTetrahedron(DelaunayTetrahedron<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Add a tetrahedron to this Delaunay tetrahedralization.
- addTetrahedron(DelaunayTetrahedron<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
-
Attach this point to the given
tetrahedron. - AxisAlignedBoundingBox - Class in org.jeometry.geom3D.algorithm.bounds
-
A class that enable to Compute the axis aligned bounding box for the spatial objects given in parameter.
- AxisAlignedBoundingBox() - Constructor for class org.jeometry.geom3D.algorithm.bounds.AxisAlignedBoundingBox
C
- compute(double[][], float) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Compute the convex hull of the set of points given in parameter as
samples. - compute(Point3DContainer<T>, float) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson3D
-
Compute the delaunay triangulation for the given points and at the given scale.
- computeAxisAlignedBoundingBox(Collection<? extends Point3D>) - Static method in class org.jeometry.geom3D.algorithm.bounds.AxisAlignedBoundingBox
-
Compute the axis aligned bounding box for the points given in parameter.
- computeAxisAlignedBoundingBox(Mesh<?>) - Static method in class org.jeometry.geom3D.algorithm.bounds.AxisAlignedBoundingBox
-
Compute an axis oriented bounding box for the polyhedron given in parameter.
- computeAxisAlignedBoundingBox(Point3DContainer<?>) - Static method in class org.jeometry.geom3D.algorithm.bounds.AxisAlignedBoundingBox
-
Compute the axis aligned bounding box for the points given in parameter.
- computeConvexDecomposition(Mesh<T>) - Static method in class org.jeometry.geom3D.algorithm.decomposition.ConvexDecomposition
-
Compute a return a set of convex polyhedra which are the convex decomposition of the polyhedron given in parameter.
- computeConvexHull(Point3DContainer<T>, boolean) - Static method in class org.jeometry.geom3D.algorithm.convexhull.quickhull.QuickHull
-
Constructs the convex hull of a set of vertices.
- computeMinimalEnclosingParallelepiped(Point3DContainer<Point3D>) - Static method in class org.jeometry.geom3D.algorithm.bounds.MinimalEnclosingParallelepipede
-
Compute the minimal enclosing parallelepiped of a point set.
- computeNeighborhood(IndexedMesh<T>) - Static method in class org.jeometry.geom3D.algorithm.MeshNeighborhoodComputation
-
Compute the neighborhood for the given
indexed mesh. - ConvexDecomposition - Class in org.jeometry.geom3D.algorithm.decomposition
-
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
. - ConvexDecomposition() - Constructor for class org.jeometry.geom3D.algorithm.decomposition.ConvexDecomposition
- cross(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- cross(Point3D, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
D
- DelaunayClarkson - Class in org.jeometry.geom3D.algorithm.delaunay.clarkson
-
This class is an implementation of the Ken Clarkson hull algorithm that enable to compute convex hull in n-dimension.
This algorithm compute a convex hull for a set ofnpoints in aO(n x log(n))average time with a worst case inO(n x n). - DelaunayClarkson() - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Create a new instance of this algorithm.
- DelaunayClarkson3D<T extends Point3D> - Class in org.jeometry.geom3D.algorithm.delaunay.clarkson
-
This class is an implementation of the Ken Clarkson hull algorithm that enable to compute convex hull in n-dimension.
This algorithm compute a convex hull for a set ofnpoints in aO(n x log(n))average time with a worst case inO(n x n). - DelaunayClarkson3D() - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson3D
-
Create a new instance of this algorithm.
- DelaunayException - Exception in org.jeometry.geom3D.algorithm.delaunay.clarkson
-
A exception that can be raised during Delaunay triangulation computation.
- DelaunayException() - Constructor for exception org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayException
-
Create a default Delaunay triangulation computation exception.
- DelaunayException(String) - Constructor for exception org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayException
-
Create a Delaunay triangulation computation exception with the given message.
- DelaunayTetrahedralization<T extends Point3D> - Class in org.jeometry.geom3D.algorithm.delaunay.clarkson
-
A Delaunay tetrahedralization regarding Ken Clarkson hull algorithm.
- DelaunayTetrahedralization(Point3DContainer<T>, int) - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Create a new Delaunay tetrahedralization on the given points.
- DelaunayTetrahedron<T extends Point3D> - Class in org.jeometry.geom3D.algorithm.delaunay.clarkson
-
A
tetrahedronthat comes from a Delaunay tetrahedralization. - DelaunayTetrahedron(int, int, int, int, boolean, Point3DContainer<T>) - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Construct a new Delaunay tetrahedron from the given point source and the given vertex indices.
- DelaunayTetrahedron(int, int, int, int, Point3DContainer<T>) - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Construct a new Delaunay tetrahedron from the given point source and the given vertex indices.
- DelaunayVertice<T extends Point3D> - Class in org.jeometry.geom3D.algorithm.delaunay.clarkson
-
An implementation of
Point3Dthan embeed delaunay computation needed informations. - DelaunayVertice() - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
-
Create a new vertex.
- DelaunayVertice(double, double, double) - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
-
Create a new vertex.
- distance(SpatialLocalization3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- divide(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- divide(double, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- divide(double, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- divide(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- divide(Vector, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- divideAffect(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- divideAffect(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- dot(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- dot(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- dual(DelaunayTetrahedron<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Outputs the Voronoi vertex dual to cell c.
- dual(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Outputs the (triangulated) boundary of the Voronoi region dual to vertex v.
E
- extract(int, int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
F
- fit(Point3DContainer<?>, double, double) - Static method in class org.jeometry.geom3D.algorithm.fitting.PlaneFitting
G
- getConvexHullFaces() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Get the indexes of faces of this tetrahedron that lie on the underlying point set convex hull.
- getDimension() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getH() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getIncidentFaces(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Get all the faces that are incident to the given point.
- getIncidentTetrahedra(DelaunayTetrahedron<T>, int, int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Returns the collection of all triangulation cells incident to edge (c,i,j).
- getIncidentTetrahedra(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Get all the
tetrahedrathat contain the givenpointas vertex. - getIncidentTetrahedra(Point3D, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
- getNeighbor(int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Get the neighbor of this tetrahedron that is linked by the face in front of the vertex indexed by given
vertexIndex. - getNeighbors() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Get the neighborhood of the delaunay simplexes.
- getNeighbors(DelaunayTetrahedron<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Get the neighbors of the given tetrahedron.
- getPoints() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Get the points (vertices) that compose the tetrahedralized space.
- getSamples() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Get the samples to process with Delaunay computation.
- getSimplexes() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Get the simplexes that compose the Delaunay computation result.
- getTetrahedra() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Get the tetrahedra that compose this Delaunay tetrahedralization.
- getUserProperties() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
-
Get the user properties attached to this point.
- getValue(int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getValues() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getValues(double[]) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getVertex(int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
- getVertex1() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.VoronoiTriangle
-
Get the first vertex of the voronoi triangle.
- getVertex2() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.VoronoiTriangle
-
Get the second vertex of the voronoi triangle.
- getVertex3() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.VoronoiTriangle
-
Get the the third vertex of the voronoi triangle.
- getVertexIndex(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
- getVertexIndice(int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
- getVertices() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Get the vertices that compose the delaunay computation result.
- getVerticesArray() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
- getVerticesSource() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
- getX() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getXMax() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getXMin() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getY() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getYMax() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getYMin() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getZ() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getZMax() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- getZMin() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
I
- improve(int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Improve uses edge-flipping to bring the current triangulation closer to the true Delaunay triangulation.
- isConvexHull() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Check if this tetrahedron contains a face that lies on the underlying points convex hull.
- isConvexHullFace(int) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Get if the face indexed by the given
indexlies on the underlying points convex hull. - isFilterInfinite() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson3D
-
Is the result of the delaunay tetrahedralization has to ignore infinite tetrahedra.
- isGenerateInfinite() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson3D
-
Is the delaunay tetrahedralization has to generate infinite tetrahedra.
- isInfinite() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Get if this tetrahedron is infinite.
- isVertex(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Check if the given
pointis a vertex of the tetrahedron.
M
- MeshNeighborhoodComputation - Class in org.jeometry.geom3D.algorithm
-
Computation of the neighborhood of a mesh.
- MeshNeighborhoodComputation() - Constructor for class org.jeometry.geom3D.algorithm.MeshNeighborhoodComputation
- MinimalEnclosingParallelepipede - Class in org.jeometry.geom3D.algorithm.bounds
-
This class is an implementation of the algorithm given in "Minimal Enclosing Parallelepiped in 3D", december 2002 by Frédéric Vivien and Nicolas Wicker (Laboratoire de l'Informatique du parallelisme, Ecole Normale supérieure de Lyon, UMR cnrs-inria-ens Lyon 5668).
- MinimalEnclosingParallelepipede() - Constructor for class org.jeometry.geom3D.algorithm.bounds.MinimalEnclosingParallelepipede
- minus(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minus(double, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minus(double, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minus(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minus(Point3D, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minus(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minus(Vector, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minusAffect(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minusAffect(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- minusAffect(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- multiply(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- multiply(double, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- multiply(double, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- multiply(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- multiply(Vector, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- multiplyAffect(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- multiplyAffect(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
N
- norm() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- normalize() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- normSquare() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
O
- org.jeometry.algorithm - module org.jeometry.algorithm
-
The Jeometry API module
- org.jeometry.geom3D.algorithm - package org.jeometry.geom3D.algorithm
- org.jeometry.geom3D.algorithm.bounds - package org.jeometry.geom3D.algorithm.bounds
- org.jeometry.geom3D.algorithm.convexhull.quickhull - package org.jeometry.geom3D.algorithm.convexhull.quickhull
- org.jeometry.geom3D.algorithm.decomposition - package org.jeometry.geom3D.algorithm.decomposition
- org.jeometry.geom3D.algorithm.delaunay.clarkson - package org.jeometry.geom3D.algorithm.delaunay.clarkson
- org.jeometry.geom3D.algorithm.fitting - package org.jeometry.geom3D.algorithm.fitting
- orthogonal() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- orthogonal(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
P
- PlaneFitting - Class in org.jeometry.geom3D.algorithm.fitting
-
Compute a plane from a
set of 3D pointsusing a Linear Least Square based method. - PlaneFitting() - Constructor for class org.jeometry.geom3D.algorithm.fitting.PlaneFitting
- plus(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plus(double, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plus(double, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plus(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plus(Point3D, Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plus(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plus(Vector, Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plusAffect(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plusAffect(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- plusAffect(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
Q
- QuickHull - Class in org.jeometry.geom3D.algorithm.convexhull.quickhull
-
This class provide convex hull computation for a set of points using the convex hull algorithm given in "The Quickhull Algorithm for Convex Hulls."
- QuickHull() - Constructor for class org.jeometry.geom3D.algorithm.convexhull.quickhull.QuickHull
S
- samples - Variable in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
The samples.
- setConvexHullFace(int, boolean) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Set if the face indexed by the given
indexlies on the underlying points convex hull. - setFilterInfinite(boolean) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson3D
-
Set if the result of the delaunay tetrahedralization has to ignore infinite tetrahedra.
- setGenerateInfinite(boolean) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson3D
-
Set if the delaunay tetrahedralization has to generate infinite tetrahedra.
- setH(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setIncidentTetrahera(Point3D, int[]) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Set the tetrahedra referenced by the given indices as incident to the given point.
- setInfinite(boolean) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Set if this tetrahedron is infinite.
- setNeighbor(int, DelaunayTetrahedron<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
-
Set the neighbor of this tetrahedron that is linked by the face in front of the vertex indexed by given
vertexIndex. - setNeighbors(DelaunayTetrahedron<T>, List<DelaunayTetrahedron<T>>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
-
Set the neighbors of the given tetrahedron.
- setSamples(double[][]) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Set the the samples to process with Delaunay computation.
- setUserProperty(String, Object) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
-
Set a user property for this point.
- setValue(int, double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setValues(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setValues(double[]) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setValues(double, double, double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setValues(Point3D) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setValues(Matrix) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setValues(Vector) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setVerticesSource(Point3DContainer<T>) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedron
- setX(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setY(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
- setZ(double) - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
T
- toString() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
- toString() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayTetrahedralization
U
- updateLocalization() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayVertice
V
- valid() - Method in class org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayClarkson
-
Checks a triangulation in various ways to make sure it is constructed correctly; test returns false if there are any problems with the triangulation.
- VoronoiTriangle - Class in org.jeometry.geom3D.algorithm.delaunay.clarkson
-
A Vorinoi triangle.
- VoronoiTriangle(Point3D, Point3D, Point3D) - Constructor for class org.jeometry.geom3D.algorithm.delaunay.clarkson.VoronoiTriangle
-
Create a new Voronoi triangle with the given vertices.
Z
- ZERO_LIMIT - Static variable in class org.jeometry.geom3D.algorithm.bounds.MinimalEnclosingParallelepipede
-
The 0 limit.
All Classes|All Packages