Assets

Point Cloud Review

What this shows

Inspect 213 authored positions and RGB samples from an ASCII PCD file.

This example needs a Canvas2D-capable browser.

Loading scene…

Loading scene…

Key API excerpt

import * as EASEL from "@xsyetopz/easel";

const geometry = new EASEL.PCDLoader().parse(pcdText);
geometry.center();
const points = new EASEL.Points(
  geometry,
  new EASEL.PointsMaterial({ vertexColors: true, size: 3 }),
);