Details
- Reviewers
Campbell Barton (campbellbarton) Walid Shouman (walid) - Maniphest Tasks
- T37872: Select Grouped for Curves
Diff Detail
Event Timeline
| source/blender/editors/curve/editcurve.c | ||
|---|---|---|
| 6274 | every usage of select_bpoint() or select_beztriple() gives me the following warning! select_bpoint(bp, select, SELECT, VISIBLE); ^ | |
Should we really have a threshold or compare is just enough?
Note: there are always an instance of code for bezier and another for pboints, that could be eliminated at the cost of introducing checks in the while loops :/, if there's a better practice to follow that would be great.
- Change the operator type from Size to Weight
- Unify the align behavior in Beztriple and BPoint
| source/blender/editors/curve/editcurve.c | ||
|---|---|---|
| 5916 | this could be taken to another deeper level to be recognized over objects/metaballs/armature ... | |
is it bettter to move both ED_curve_direction_bezt() and ED_curve_direction_bp() to curve.c?
- needs key shortcut - WM_keymap_add_item(keymap, "CURVE_OT_select_similar", GKEY, KM_PRESS, KM_SHIFT, 0);
- needs menu item
- only compares to points within the spline, I think it should compare with all points in the curve.
- comparing the Tilt fails, I added a path and tried to select similar tilt.
There hasn't been any activity on this for a while, so closing this.
Note: A new patch for this is in D1381 (heavily based on this one).