Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_curves_sculpt.h
| Show All 10 Lines | |||||
| #endif | #endif | ||||
| struct Curves; | struct Curves; | ||||
| void ED_operatortypes_sculpt_curves(void); | void ED_operatortypes_sculpt_curves(void); | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||
JacquesLucke: looks like this section can be removed now | |||||
| #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 | |||||
looks like this section can be removed now