Fix #131214: Geometry Nodes: Crash due to Free curve normals

This commit is contained in:
Hans Goudey
2024-12-02 13:11:47 -05:00
parent 6e44380e8d
commit d04ac76ed8
2 changed files with 2 additions and 2 deletions

View File

@@ -217,7 +217,7 @@ static Array<float3> curve_normal_point_domain(const CurvesGeometry &curves)
curves::poly::calculate_normals_minimum(nurbs_tangents, cyclic, curve_normals);
break;
case NORMAL_MODE_FREE:
custom_normals.materialize(points, curve_normals);
custom_normals.materialize(points, results);
break;
}
break;