Assets
Scan Mesh Review
What this shows
Triangulate a polygon PLY dolphin scan and reconstruct smooth normals.
Loading scene…Key API excerpt
Key API excerpt
import * as EASEL from "@xsyetopz/easel";
const geometry = new EASEL.PLYLoader().parse(plyText);
geometry.computeVertexNormals();
geometry.center();
const mesh = new EASEL.Mesh(geometry, material);