Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GEO_mesh_to_curve.hh « geometry « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0f24853dbc73909f18770ba880d95f59f6dae30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

#include "BLI_index_mask.hh"

#include "BKE_curves.hh"

struct Mesh;

/** \file
 * \ingroup geo
 */

namespace blender::geometry {

/**
 * Convert the mesh into one or many poly curves. Since curves cannot have branches,
 * intersections of more than three edges will become breaks in curves. Attributes that
 * are not built-in on meshes and not curves are transferred to the result curve.
 */
bke::CurvesGeometry mesh_to_curve_convert(const Mesh &mesh, const IndexMask selection);

bke::CurvesGeometry create_curve_from_vert_indices(const Mesh &mesh,
                                                   Span<int> vert_indices,
                                                   Span<int> curve_offsets,
                                                   IndexRange cyclic_curves);

}  // namespace blender::geometry