Blender V4.3
ply_export_data.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
11namespace blender::io::ply {
12
13class FileBuffer;
14struct PlyData;
15
16void write_vertices(FileBuffer &buffer, const PlyData &ply_data);
17
18void write_faces(FileBuffer &buffer, const PlyData &ply_data);
19
20void write_edges(FileBuffer &buffer, const PlyData &ply_data);
21
22} // namespace blender::io::ply
void write_vertices(FileBuffer &buffer, const PlyData &ply_data)
void write_faces(FileBuffer &buffer, const PlyData &ply_data)
void write_edges(FileBuffer &buffer, const PlyData &ply_data)