diff --git a/source/blender/editors/gpencil/gpencil_fill.c b/source/blender/editors/gpencil/gpencil_fill.c index 6b1f5ba1ad0..8a7e1c03e66 100644 --- a/source/blender/editors/gpencil/gpencil_fill.c +++ b/source/blender/editors/gpencil/gpencil_fill.c @@ -314,11 +314,6 @@ static void add_endpoint_radius_help(tGPDfill *tgpf, pt->z = endpoint[2] + radius * sinf(angle); pt->strength = 1.0f; pt->pressure = 1.0f; - - /* Rotate to object rotation. */ - sub_v3_v3(&pt->x, endpoint); - mul_mat3_m4_v3(tgpf->ob->object_to_world, &pt->x); - add_v3_v3(&pt->x, endpoint); } }