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

GEO_subdivide_curves.hh « geometry « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66c2eb53496993dcdb369ca8aa4201a7ce76bb8a (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
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

#include "BLI_function_ref.hh"
#include "BLI_index_mask.hh"

#include "BKE_curves.hh"

class CurveComponent;

namespace blender::geometry {

/**
 * Add more points along each segment, with the amount of points to add in each segment described
 * by the #cuts input. The new points are equidistant in parameter space, but not in the actual
 * distances.
 *
 * \param selection: A selection of curves to consider when subdividing.
 */
Curves *subdivide_curves(const CurveComponent &src_component,
                         const bke::CurvesGeometry &src_curves,
                         IndexMask selection,
                         const VArray<int> &cuts);

}  // namespace blender::geometry