Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorWannes Malfait <Wannes>2021-03-17 14:23:17 +0300
committerJacques Lucke <jacques@blender.org>2021-03-17 14:23:17 +0300
commit2a4bde04c5e62d979b60556b882002b87c5ea5f4 (patch)
treeba789dfc9050fa674285f2e657ae6eac730d4a22 /source
parent11857089113682447b85b07169b2a3c5db5eb6d2 (diff)
Fix T86655: remove doubled transforms
Differential Revision: https://developer.blender.org/D10744
Diffstat (limited to 'source')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_mesh_primitive_cylinder.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_mesh_primitive_cylinder.cc b/source/blender/nodes/geometry/nodes/node_geo_mesh_primitive_cylinder.cc
index 9137be064de..e0fdce361d5 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_mesh_primitive_cylinder.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_mesh_primitive_cylinder.cc
@@ -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));
}