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

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

#pragma once

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

#include "BKE_curves.hh"

namespace blender::geometry {

bke::CurvesGeometry fillet_curves_poly(const bke::CurvesGeometry &src_curves,
                                       IndexMask curve_selection,
                                       const VArray<float> &radius,
                                       const VArray<int> &counts,
                                       bool limit_radius);

bke::CurvesGeometry fillet_curves_bezier(const bke::CurvesGeometry &src_curves,
                                         IndexMask curve_selection,
                                         const VArray<float> &radius,
                                         bool limit_radius);

}  // namespace blender::geometry