UNPKG

@playcanvas/splat-transform

Version:

Library and CLI tool for 3D Gaussian splat format conversion and transformation

19 lines (18 loc) 594 B
import { type FileSystem } from '../io/write'; import { PlyData } from '../readers'; type WritePlyOptions = { filename: string; plyData: PlyData; }; /** * Writes Gaussian splat data to a binary PLY file. * * The PLY format is the standard output from 3D Gaussian Splatting training * and is widely supported by visualization tools. * * @param options - Options including filename and PLY data to write. * @param fs - File system for writing the output file. * @ignore */ declare const writePly: (options: WritePlyOptions, fs: FileSystem) => Promise<void>; export { writePly };