Fix T40214: Wrong size calculation on new curve objects

Do not take into account grid size in objectdata creation itself, this is handled on a higher level.
This commit is contained in:
Bastien Montagne 2014-05-15 22:08:27 +02:00
parent 7773f8f504
commit 48fcadc88d
Notes: blender-bot 2023-02-14 10:38:53 +01:00
Referenced by issue #40214, Wrong size calculation on new curve objects
1 changed files with 1 additions and 2 deletions

View File

@ -109,7 +109,6 @@ Nurb *add_nurbs_primitive(bContext *C, Object *obedit, float mat[4][4], int type
{
static int xzproj = 0; /* this function calls itself... */
ListBase *editnurb = object_editcurve_get(obedit);
View3D *v3d = CTX_wm_view3d(C);
RegionView3D *rv3d = ED_view3d_context_rv3d(C);
Nurb *nu = NULL;
BezTriple *bezt;
@ -119,7 +118,7 @@ Nurb *add_nurbs_primitive(bContext *C, Object *obedit, float mat[4][4], int type
float umat[4][4] = MAT4_UNITY, viewmat[4][4] = MAT4_UNITY;
float fac;
int a, b;
const float grid = v3d ? v3d->grid : 1.0f;
const float grid = 1.0f;
const int cutype = (type & CU_TYPE); // poly, bezier, nurbs, etc
const int stype = (type & CU_PRIMITIVE);
const int force_3d = ((Curve *)obedit->data)->flag & CU_3D; /* could be adding to an existing 3D curve */