omf_io.pointset.exporters.export_to_ply

omf_io.pointset.exporters.export_to_ply(data, output_file, binary=False)[source]

Export points to a PLY file (ASCII or binary).

Parameters:
  • data (pd.DataFrame) – The input DataFrame with a MultiIndex (x, y, z).

  • output_file (Path) – The output PLY file path.

  • binary (bool) – Whether to export in binary format. Defaults to False (ASCII).

Return type:

Path