UNPKG

@playcanvas/splat-transform

Version:

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

16 lines (15 loc) 510 B
import { DataTable } from '../data-table'; import { type FileSystem } from '../io/write'; type WriteGlbOptions = { filename: string; dataTable: DataTable; }; /** * Writes Gaussian splat data to a GLB file using the KHR_gaussian_splatting extension. * * @param options - Options including filename and data table to write. * @param fs - File system for writing the output file. * @ignore */ declare const writeGlb: (options: WriteGlbOptions, fs: FileSystem) => Promise<void>; export { writeGlb };