WIP: Geometry Nodes: Shperical Ico Sphere #116982

Draft
Iliya Katushenock wants to merge 48 commits from mod_moder/blender:new_ico_sphere_alg into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 3385093b7a - Show all commits

View File

@ -768,8 +768,7 @@ static void corner_edges_topology(const int edge_edges_num,
}
/* Faces (flipped). */
const int top_faces_num = edge_edges_num - 1;
for (const int line_i : IndexRange(top_faces_num)) {
for (const int line_i : IndexRange(top_faces.hight())) {
MutableSpan<int> line = top_face_edges.slice(top_faces.slice_at(line_i).scale(face_size));
const int inner_edge_line_start = inner_face_edges.start_of(line_i);
for (const int i : IndexRange(inner_face_edges.size_of(line_i))) {