Assets

Scan Mesh Review

What this shows

Triangulate a polygon PLY dolphin scan and reconstruct smooth normals.

This example needs a Canvas2D-capable browser.

Loading scene…

Loading scene…

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);