Cleanup: Remove duplicate call to function

Missed in rBa2ebbeb836ae765
This commit is contained in:
Hans Goudey 2021-06-08 09:55:14 -05:00
parent 2e19649bb9
commit a31bd2609f
1 changed files with 0 additions and 1 deletions

View File

@ -76,7 +76,6 @@ static void geo_node_mesh_primitive_cylinder_exec(GeoNodeExecParams params)
/* The cylinder is a special case of the cone mesh where the top and bottom radius are equal. */
Mesh *mesh = create_cylinder_or_cone_mesh(radius, radius, depth, verts_num, fill_type);
BKE_id_material_eval_ensure_default_slot(&mesh->id);
params.set_output("Geometry", GeometrySet::create_with_mesh(mesh));
}