Blender V4.3
ply_export_header.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11struct PLYExportParams;
12
13namespace blender::io::ply {
14
15class FileBuffer;
16struct PlyData;
17
18void write_header(FileBuffer &buffer,
19 const PlyData &ply_data,
20 const PLYExportParams &export_params);
21
22} // namespace blender::io::ply
void write_header(FileBuffer &buffer, const PlyData &ply_data, const PLYExportParams &export_params)