Uses of Interface
org.apache.commons.geometry.euclidean.threed.mesh.TriangleMesh.Face
-
Packages that use TriangleMesh.Face Package Description org.apache.commons.geometry.euclidean.threed.mesh This package contains types representing 3D mesh data structures. -
-
Uses of TriangleMesh.Face in org.apache.commons.geometry.euclidean.threed.mesh
Classes in org.apache.commons.geometry.euclidean.threed.mesh that implement TriangleMesh.Face Modifier and Type Class Description private class
SimpleTriangleMesh.SimpleTriangleFace
Internal implementation ofTriangleMesh.Face
.Fields in org.apache.commons.geometry.euclidean.threed.mesh with type parameters of type TriangleMesh.Face Modifier and Type Field Description private java.util.function.Function<? super TriangleMesh.Face,T>
SimpleTriangleMesh.FaceIterator. fn
Function to apply to each face in the mesh.Methods in org.apache.commons.geometry.euclidean.threed.mesh that return TriangleMesh.Face Modifier and Type Method Description TriangleMesh.Face
SimpleTriangleMesh. getFace(int index)
Get a face from the mesh by its index.Methods in org.apache.commons.geometry.euclidean.threed.mesh that return types with arguments of type TriangleMesh.Face Modifier and Type Method Description java.lang.Iterable<TriangleMesh.Face>
SimpleTriangleMesh. faces()
Get an iterable containing all faces in the mesh.java.util.List<TriangleMesh.Face>
SimpleTriangleMesh. getFaces()
Get a list containing all faces in the mesh.Method parameters in org.apache.commons.geometry.euclidean.threed.mesh with type arguments of type TriangleMesh.Face Modifier and Type Method Description private <T> java.util.stream.Stream<T>
SimpleTriangleMesh. createFaceStream(java.util.function.Function<TriangleMesh.Face,T> fn)
Create a stream containing the results of applyingfn
to each face in the mesh.Constructor parameters in org.apache.commons.geometry.euclidean.threed.mesh with type arguments of type TriangleMesh.Face Constructor Description FaceIterator(java.util.function.Function<? super TriangleMesh.Face,T> fn)
Construct a new instance for iterating through the mesh faces and extracting a value from each.
-