Skip to content
Novus Examples
ply503 B

Vertex-coloured Cube (PLY)

The same per-vertex-coloured cube as ASCII PLY with red/green/blue vertex properties — the Stanford-format twin of the GLB, for testing PLY colour parsing.

Loading 3D preview…

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

Specifications

Format
PLY (ASCII)
Properties
x y z + red green blue
Vertices
8

Code examples

import trimesh  # pip install trimesh

mesh = trimesh.load("gradient-cube.ply")
print(mesh.bounds, mesh.faces.shape)

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