An exporter for *PLY*.
PLY (Polygon or Stanford Triangle Format) is a
file format for efficient delivery and loading of simple, static 3D content in a dense format.
Both binary and ascii formats are supported. PLY can store vertex positions, colors, normals and
uv coordinates. No textures or texture references are saved.
// Instantiate an exporter
var exporter = new THREE.PLYExporter();
// Parse the input and generate the ply output
var data = exporter.parse( scene, options );
downloadFile(data);
Creates a new [name].
[page:Object input] — Object3D
[page:Options options] — Export options
Generates ply file data as string or ArrayBuffer (ascii or binary) output from the input object. If the object is composed of multiple children and geometry, they are merged into a single mesh in the file.