Learn R Programming

freesurferformats (version 0.1.18)

read.fs.surface.stl.ascii: Read surface mesh in STL ASCII format.

Description

The STL format is a mesh format that is often used for 3D printing, it stores geometry information. It is known as stereolithography format. A binary and an ASCII version exist. This function reads the ASCII version.

Usage

read.fs.surface.stl.ascii(filepath, digits = 6L)

Value

an `fs.surface` instance. The normals are available in the 'metadata' property.

Arguments

filepath

full path to surface mesh file in STL format.

digits

the precision (number of digits after decimal separator) to use when determining whether two x,y,z coords define the same vertex. This is used when the polygon soup is turned into an indexed mesh.

References

See https://en.wikipedia.org/wiki/STL_(file_format) for a format description.