From 1768bd2c3313fa2aef6434950c88aaa97fcb3792 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 25 Nov 2013 21:01:22 +0100 Subject: Fix T37617: "Add plane" was adding a 2*2 grid Was a regression from rBaa3c06b41ca9, hope this time all things are OK again (note the X/Y subdivision values still are different than before (-1 for same result), but imho they make more sense this way). --- source/blender/bmesh/operators/bmo_primitive.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/bmesh/operators/bmo_primitive.c') diff --git a/source/blender/bmesh/operators/bmo_primitive.c b/source/blender/bmesh/operators/bmo_primitive.c index 505a6b1ab8a..32d33d9e1e1 100644 --- a/source/blender/bmesh/operators/bmo_primitive.c +++ b/source/blender/bmesh/operators/bmo_primitive.c @@ -231,8 +231,8 @@ void bmo_create_grid_exec(BMesh *bm, BMOperator *op) BMOpSlot *slot_verts_out = BMO_slot_get(op->slots_out, "verts.out"); const float dia = BMO_slot_float_get(op->slots_in, "size"); - const unsigned int xtot = max_ii(2, BMO_slot_int_get(op->slots_in, "x_segments")) + 1; - const unsigned int ytot = max_ii(2, BMO_slot_int_get(op->slots_in, "y_segments")) + 1; + const unsigned int xtot = max_ii(1, BMO_slot_int_get(op->slots_in, "x_segments")) + 1; + const unsigned int ytot = max_ii(1, BMO_slot_int_get(op->slots_in, "y_segments")) + 1; float xtot_inv2 = 2.0f / (xtot - 1); float ytot_inv2 = 2.0f / (ytot - 1); -- cgit v1.2.3