Uses of Interface
org.apache.commons.geometry.io.euclidean.threed.FacetDefinitionReader
-
Packages that use FacetDefinitionReader Package Description org.apache.commons.geometry.io.euclidean.threed This package contains the core interfaces and classes providing IO functionality for Euclidean 3D space.org.apache.commons.geometry.io.euclidean.threed.obj This package contains types for reading and writing the OBJ geometric data file format.org.apache.commons.geometry.io.euclidean.threed.stl This package contains types for reading and writing the STL geometric data file format.org.apache.commons.geometry.io.euclidean.threed.txt This package contains types for working with simple text-based 3D geometric data formats, including CSV and simple text files. -
-
Uses of FacetDefinitionReader in org.apache.commons.geometry.io.euclidean.threed
Fields in org.apache.commons.geometry.io.euclidean.threed declared as FacetDefinitionReader Modifier and Type Field Description private FacetDefinitionReader
AbstractBoundaryReadHandler3D.FacetDefinitionReaderIterator. reader
Reader supplying the facets for iteration.Methods in org.apache.commons.geometry.io.euclidean.threed that return FacetDefinitionReader Modifier and Type Method Description FacetDefinitionReader
BoundaryIOManager3D. facetDefinitionReader(GeometryInput in, GeometryFormat fmt)
Get aFacetDefinitionReader
for reading facet information from the given input.FacetDefinitionReader
BoundaryReadHandler3D. facetDefinitionReader(GeometryInput in)
Return aFacetDefinitionReader
for reading rawfacets
from the given input stream.static FacetDefinitionReader
IO3D. facetDefinitionReader(java.net.URL url)
Get aFacetDefinitionReader
for reading facet information from the given URL.static FacetDefinitionReader
IO3D. facetDefinitionReader(java.nio.file.Path path)
Get aFacetDefinitionReader
for reading facet information from the given file path.static FacetDefinitionReader
IO3D. facetDefinitionReader(GeometryInput in, GeometryFormat fmt)
Get aFacetDefinitionReader
for reading facet information from the given input.Constructors in org.apache.commons.geometry.io.euclidean.threed with parameters of type FacetDefinitionReader Constructor Description FacetDefinitionReaderIterator(FacetDefinitionReader reader)
Construct a new iterator instance that iterates through the facets available from the argument. -
Uses of FacetDefinitionReader in org.apache.commons.geometry.io.euclidean.threed.obj
Classes in org.apache.commons.geometry.io.euclidean.threed.obj that implement FacetDefinitionReader Modifier and Type Class Description class
ObjFacetDefinitionReader
Class for readingfacets
from OBJ content.Methods in org.apache.commons.geometry.io.euclidean.threed.obj that return FacetDefinitionReader Modifier and Type Method Description FacetDefinitionReader
ObjBoundaryReadHandler3D. facetDefinitionReader(GeometryInput in)
Return aFacetDefinitionReader
for reading rawfacets
from the given input stream. -
Uses of FacetDefinitionReader in org.apache.commons.geometry.io.euclidean.threed.stl
Classes in org.apache.commons.geometry.io.euclidean.threed.stl that implement FacetDefinitionReader Modifier and Type Class Description class
BinaryStlFacetDefinitionReader
Class used to read the binary form of the STL file format.class
TextStlFacetDefinitionReader
FacetDefinitionReader
for reading the text (i.e., "ASCII") version of the STL file format.Methods in org.apache.commons.geometry.io.euclidean.threed.stl that return FacetDefinitionReader Modifier and Type Method Description static FacetDefinitionReader
StlFacetDefinitionReaders. create(java.io.InputStream in, java.nio.charset.Charset charset)
Construct aFacetDefinitionReader
for reading STL content from the given input.FacetDefinitionReader
StlBoundaryReadHandler3D. facetDefinitionReader(GeometryInput in)
Return aFacetDefinitionReader
for reading rawfacets
from the given input stream. -
Uses of FacetDefinitionReader in org.apache.commons.geometry.io.euclidean.threed.txt
Classes in org.apache.commons.geometry.io.euclidean.threed.txt that implement FacetDefinitionReader Modifier and Type Class Description class
TextFacetDefinitionReader
Facet definition reader implementation that reads an extremely simple text format.Methods in org.apache.commons.geometry.io.euclidean.threed.txt that return FacetDefinitionReader Modifier and Type Method Description FacetDefinitionReader
TextBoundaryReadHandler3D. facetDefinitionReader(GeometryInput in)
Return aFacetDefinitionReader
for reading rawfacets
from the given input stream.
-