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

ED_curves_sculpt.h « include « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1c0b649d2b45628cd4c18b7d3b15c72dc17bbe7 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup editors
 */

#pragma once

#ifdef __cplusplus
extern "C" {
#endif

struct Curves;

void ED_operatortypes_sculpt_curves(void);

#ifdef __cplusplus
}
#endif

#ifdef __cplusplus

#  include "BLI_index_mask.hh"
#  include "BLI_vector.hh"

namespace blender::ed::sculpt_paint {

/**
 * Find curves that have any point selected (a selection factor greater than zero),
 * or curves that have their own selection factor greater than zero.
 */
IndexMask retrieve_selected_curves(const Curves &curves_id, Vector<int64_t> &r_indices);

/**
 * Find points that are selected (a selection factor greater than zero),
 * or points in curves with a selection factor greater than zero).
 */
IndexMask retrieve_selected_points(const Curves &curves_id, Vector<int64_t> &r_indices);

}  // namespace blender::ed::sculpt_paint

#endif