tornavis/source/blender/geometry/GEO_subdivide_curves.hh

29 lines
802 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
#include "BLI_function_ref.hh"
#include "BLI_index_mask.hh"
#include "BLI_virtual_array.hh"
#include "BKE_curves.hh"
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.
*/
bke::CurvesGeometry subdivide_curves(
const bke::CurvesGeometry &src_curves,
const IndexMask &selection,
const VArray<int> &cuts,
const bke::AnonymousAttributePropagationInfo &propagation_info);
} // namespace blender::geometry