Fix T86655: remove doubled transforms

Differential Revision: https://developer.blender.org/D10744
This commit is contained in:
Wannes Malfait 2021-03-17 12:23:17 +01:00 committed by Jacques Lucke
parent 1185708911
commit 2a4bde04c5
Notes: blender-bot 2023-02-14 06:25:25 +01:00
Referenced by issue #86655, Cylinder node, incorrect work of location parameter
1 changed files with 0 additions and 2 deletions

View File

@ -82,8 +82,6 @@ static void geo_node_mesh_primitive_cylinder_exec(GeoNodeExecParams params)
Mesh *mesh = create_cylinder_or_cone_mesh(
location, rotation, radius, radius, depth, verts_num, fill_type);
transform_mesh(mesh, location, rotation, float3(1));
params.set_output("Geometry", GeometrySet::create_with_mesh(mesh));
}