Skip to content
Novus Examples
ply42.6 KB

Point Cloud — Fibonacci Sphere (PLY)

A 1,200-point coloured point cloud arranged on a sphere via a Fibonacci lattice — a vertex-only PLY (no faces), the format scanners and LiDAR tools produce. Paired with a GLB (POINTS) twin, for testing point-cloud loaders.

Loading 3D preview…

Interactive preview rendered from the equivalent glTF (sphere-points.glb); drag to orbit. Download the file above for the PLY original.

Specifications

Format
PLY (ASCII, points only)
Points
1200
Coloured
true
Shape
unit sphere (Fibonacci lattice)

Code examples

import trimesh  # pip install trimesh

mesh = trimesh.load("sphere-points.ply")
print(mesh.bounds, mesh.faces.shape)

Generated by generation/models_realistic.py. Free for any use, no attribution required — license.