stlFileChecker
Description
Use the stlFileChecker
object to detect and list bad features in
STL files. The bad features you can detect using the stlFileChecker
object
are:
Non-manifold edges
Non-manifold vertices
Slivers
Duplicate vertices
Normal transition edges
Free triangles
T-vertices
Creation
Description
obj = stlFileChecker(
detects bad
features in the STL file specified by filename
)filename
and lists the
features in the stlFileChecker
object.
obj = stlFileChecker(
detects bad features in the STL file using additional input
properties specified as one or more name-value arguments.
filename
,PropertyName=Value
)PropertyName
is the property name and Value
is
the corresponding value. You can specify several name-value arguments in any order as
PropertyName1=Value1,...,PropertyNameN=ValueN
. Properties that you
do not specify, retain their default values.
For example, stlFileChecker('sampleFile.stl',ShowLog=1)
displays
a log of the bad features in sampleFile.stl
file.
Input Arguments
Properties
Object Functions
showDuplicateVertices | Highlight duplicate vertices in STL file or mesh |
showFreeTriangles | Highlight free triangles in STL file or mesh |
showNonManifoldEdges | Highlight non-manifold edges in STL file or mesh |
showNonManifoldVertices | Highlight non-manifold vertices in STL file or mesh |
showNormalTransitionEdges | Highlight normal transition edges in STL file or mesh |
showSlivers | Highlight slivers in STL file or mesh |
showTVertices | Highlight T-vertices in STL file or mesh |
Examples
More About
Version History
Introduced in R2021b