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:
authorCampbell Barton <campbell@blender.org>2022-10-04 05:53:59 +0300
committerCampbell Barton <campbell@blender.org>2022-10-04 05:53:59 +0300
commit1d629a44036286b2d5e255f8a3f10d3f1eb0af08 (patch)
treecd76ee1f08d9994d839ff68c0b33d3ebfdf9eb1f /source
parent22c3db72ca2f3d92852f463c184381ccf2998230 (diff)
Cleanup: correct argument size for plane in planeProjection
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/transform/transform_constraints.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c
index d09bd99ef57..fa56456d8e7 100644
--- a/source/blender/editors/transform/transform_constraints.c
+++ b/source/blender/editors/transform/transform_constraints.c
@@ -338,7 +338,7 @@ static bool isPlaneProjectionViewAligned(const TransInfo *t, const float plane[4
}
static void planeProjection(const TransInfo *t,
- const float plane[3],
+ const float plane[4],
const float in[3],
float out[3])
{