Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/node_geo_set_curve_handles.cc
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | if (spline->type() == Spline::Type::Bezier) { | ||||
| } | } | ||||
| } | } | ||||
| current_mask++; | current_mask++; | ||||
| } | } | ||||
| current_point++; | current_point++; | ||||
| } | } | ||||
| } | } | ||||
| else { | else { | ||||
| for (int UNUSED(i) : spline->positions().index_range()) { | for ([[maybe_unused]] int i : spline->positions().index_range()) { | ||||
| if (selection[current_mask] == current_point) { | if (selection[current_mask] == current_point) { | ||||
| current_mask++; | current_mask++; | ||||
| } | } | ||||
| current_point++; | current_point++; | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||