37using bke::CurvesGeometry;
42 bool clear_selection_;
50 : use_select_(use_select), clear_selection_(clear_selection)
103 if (
self.clear_selection_) {
152 for (
const float4x4 &brush_transform : symmetry_brush_transforms) {
168 const float brush_radius_sq_re =
pow2f(brush_radius_re);
171 for (const int point_i : point_range) {
172 const float3 pos_cu = math::transform_point(brush_transform_inv,
173 deformation.positions[point_i]);
176 const float2 pos_re = ED_view3d_project_float_v2_m4(ctx_.region, pos_cu, projection);
178 const float distance_to_brush_sq_re = math::distance_squared(pos_re, brush_pos_re_);
179 if (distance_to_brush_sq_re > brush_radius_sq_re) {
184 const float distance_to_brush_re = std::sqrt(distance_to_brush_sq_re);
186 const float radius_falloff = BKE_brush_curve_strength(
187 brush_, distance_to_brush_re, brush_radius_re);
189 const float weight = brush_strength_ * radius_falloff;
191 selection[point_i] = math::interpolate(selection[point_i], selection_goal_, weight);
210 for (
const float4x4 &brush_transform : symmetry_brush_transforms) {
221 const float brush_radius_cu =
self_->brush_3d_.radius_cu;
222 const float brush_radius_sq_cu =
pow2f(brush_radius_cu);
225 for (const int i : point_range) {
226 const float3 pos_old_cu = deformation.positions[i];
229 const float distance_to_brush_sq_cu = math::distance_squared(pos_old_cu, brush_cu);
230 if (distance_to_brush_sq_cu > brush_radius_sq_cu) {
235 const float distance_to_brush_cu = std::sqrt(distance_to_brush_sq_cu);
238 const float radius_falloff = BKE_brush_curve_strength(
239 brush_, distance_to_brush_cu, brush_radius_cu);
241 const float weight = brush_strength_ * radius_falloff;
243 selection[i] = math::interpolate(selection[i], selection_goal_, weight);
252 for (
const float4x4 &brush_transform : symmetry_brush_transforms) {
269 const float brush_radius_sq_re =
pow2f(brush_radius_re);
272 for (const int curve_i : curves_range) {
273 const float max_weight = threading::parallel_reduce(
274 points_by_curve[curve_i].drop_back(1),
277 [&](const IndexRange segment_range, const float init) {
278 float max_weight = init;
279 for (const int segment_i : segment_range) {
280 const float3 pos1_cu = math::transform_point(brush_transform_inv,
281 deformation.positions[segment_i]);
282 const float3 pos2_cu = math::transform_point(brush_transform_inv,
283 deformation.positions[segment_i + 1]);
285 const float2 pos1_re = ED_view3d_project_float_v2_m4(
286 ctx_.region, pos1_cu, projection);
287 const float2 pos2_re = ED_view3d_project_float_v2_m4(
288 ctx_.region, pos2_cu, projection);
290 const float distance_sq_re = dist_squared_to_line_segment_v2(
291 brush_pos_re_, pos1_re, pos2_re);
292 if (distance_sq_re > brush_radius_sq_re) {
295 const float radius_falloff = BKE_brush_curve_strength(
296 brush_, std::sqrt(distance_sq_re), brush_radius_re);
297 const float weight = brush_strength_ * radius_falloff;
298 max_weight = std::max(max_weight, weight);
302 [](float a, float b) { return std::max(a, b); });
303 selection[curve_i] = math::interpolate(selection[curve_i], selection_goal_, max_weight);
322 for (
const float4x4 &brush_transform : symmetry_brush_transforms) {
334 const float brush_radius_cu =
self_->brush_3d_.radius_cu;
335 const float brush_radius_sq_cu =
pow2f(brush_radius_cu);
338 for (const int curve_i : curves_range) {
339 const float max_weight = threading::parallel_reduce(
340 points_by_curve[curve_i].drop_back(1),
343 [&](const IndexRange segment_range, const float init) {
344 float max_weight = init;
345 for (const int segment_i : segment_range) {
346 const float3 &pos1_cu = deformation.positions[segment_i];
347 const float3 &pos2_cu = deformation.positions[segment_i + 1];
349 const float distance_sq_cu = dist_squared_to_line_segment_v3(
350 brush_cu, pos1_cu, pos2_cu);
351 if (distance_sq_cu > brush_radius_sq_cu) {
354 const float radius_falloff = BKE_brush_curve_strength(
355 brush_, std::sqrt(distance_sq_cu), brush_radius_cu);
356 const float weight = brush_strength_ * radius_falloff;
357 max_weight = std::max(max_weight, weight);
361 [](float a, float b) { return std::max(a, b); });
362 selection[curve_i] = math::interpolate(selection[curve_i], selection_goal_, max_weight);
376 if (brush_3d.has_value()) {
377 self_->brush_3d_ = *brush_3d;
389 executor.
execute(*
this,
C, stroke_extension);
401 return std::make_unique<SelectionPaintOperation>(use_select, clear_selection);
int BKE_brush_size_get(const Scene *scene, const Brush *brush)
Object * CTX_data_active_object(const bContext *C)
Scene * CTX_data_scene(const bContext *C)
Low-level operations for curves.
const Brush * BKE_paint_brush_for_read(const Paint *paint)
Brush * BKE_paint_brush(Paint *paint)
MINLINE float pow2f(float x)
void DEG_id_tag_update(ID *id, unsigned int flags)
@ PAINT_FALLOFF_SHAPE_SPHERE
@ PAINT_FALLOFF_SHAPE_TUBE
void ED_region_tag_redraw(ARegion *region)
void ED_view3d_win_to_3d(const View3D *v3d, const ARegion *region, const float depth_pt[3], const float mval[2], float r_out[3])
blender::float4x4 ED_view3d_ob_project_mat_get(const RegionView3D *rv3d, const Object *ob)
friend struct SelectionPaintOperationExecutor
void on_stroke_extended(const bContext &C, const StrokeExtension &stroke_extension) override
SelectionPaintOperation(const bool use_select, const bool clear_selection)
GeometryDeformation get_evaluated_curves_deformation(const Object *ob_eval, const Object &ob_orig)
void fill_selection_false(GMutableSpan selection)
void remember_stroke_position(Scene &scene, const float3 &brush_position_wo)
std::optional< CurvesBrush3D > sample_curves_3d_brush(const Depsgraph &depsgraph, const ARegion ®ion, const View3D &v3d, const RegionView3D &rv3d, const Object &curves_object, const float2 &brush_pos_re, const float brush_radius_re)
bke::SpanAttributeWriter< float > float_selection_ensure(Curves &curves_id)
std::unique_ptr< CurvesSculptStrokeOperation > new_selection_paint_operation(const BrushStrokeMode brush_mode, const bContext &C)
float brush_strength_get(const Scene &scene, const Brush &brush, const StrokeExtension &stroke_extension)
Vector< float4x4 > get_symmetry_brush_transforms(const eCurvesSymmetryType symmetry)
float brush_radius_factor(const Brush &brush, const StrokeExtension &stroke_extension)
CartesianBasis invert(const CartesianBasis &basis)
VecBase< T, 3 > transform_point(const CartesianBasis &basis, const VecBase< T, 3 > &v)
void parallel_for(const IndexRange range, const int64_t grain_size, const Function &function, const TaskSizeHints &size_hints=detail::TaskSizeHints_Static(1))
MatBase< float, 4, 4 > float4x4
VecBase< float, 2 > float2
VecBase< float, 3 > float3
struct ToolSettings * toolsettings
MutableVArraySpan< T > span
bke::SpanAttributeWriter< float > selection_
CurvesSculptCommonContext ctx_
void paint_point_selection_spherical_with_symmetry(MutableSpan< float > selection)
CurvesSurfaceTransforms transforms_
void paint_point_selection_spherical(MutableSpan< float > selection, const float3 &brush_cu)
void paint_curve_selection_projected(const float4x4 &brush_transform, MutableSpan< float > selection)
float brush_radius_factor_
SelectionPaintOperation * self_
void paint_point_selection_projected_with_symmetry(MutableSpan< float > selection)
SelectionPaintOperationExecutor(const bContext &C)
void paint_curve_selection_spherical(MutableSpan< float > selection, const float3 &brush_cu)
void paint_point_selection_projected(const float4x4 &brush_transform, MutableSpan< float > selection)
float brush_radius_base_re_
void paint_curve_selection_spherical_with_symmetry(MutableSpan< float > selection)
void paint_curve_selection_projected_with_symmetry(MutableSpan< float > selection)
void execute(SelectionPaintOperation &self, const bContext &C, const StrokeExtension &stroke_extension)
void initialize_spherical_brush_reference_point()
void WM_main_add_notifier(uint type, void *reference)