Merge of SimpleDeform modifier from soc-2008-jaguarandi branch
http://wiki.blender.org/index.php/User:Jaguarandi/SummerOfCode2008/SimpleDeform
This commit is contained in:
commit
6cc87a1047
39
source/blender/blenkernel/BKE_simple_deform.h
Normal file
39
source/blender/blenkernel/BKE_simple_deform.h
Normal file
@ -0,0 +1,39 @@
|
||||
/**
|
||||
* BKE_shrinkwrap.h
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software Foundation,
|
||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* The Original Code is Copyright (C) Blender Foundation.
|
||||
* All rights reserved.
|
||||
*
|
||||
* The Original Code is: all of this file.
|
||||
*
|
||||
* Contributor(s): none yet.
|
||||
*
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
#ifndef BKE_SIMPLE_DEFORM_H
|
||||
#define BKE_SIMPLE_DEFORM_H
|
||||
|
||||
struct Object;
|
||||
struct DerivedMesh;
|
||||
struct SimpleDeformModifierData;
|
||||
|
||||
void SimpleDeformModifier_do(SimpleDeformModifierData *smd, struct Object *ob, struct DerivedMesh *dm, float (*vertexCos)[3], int numVerts);
|
||||
|
||||
#endif
|
||||
|
@ -105,6 +105,7 @@
|
||||
#include "depsgraph_private.h"
|
||||
#include "BKE_deform.h"
|
||||
#include "BKE_shrinkwrap.h"
|
||||
#include "BKE_simple_deform.h"
|
||||
|
||||
#include "LOD_DependKludge.h"
|
||||
#include "LOD_decimation.h"
|
||||
@ -7743,7 +7744,7 @@ static void shrinkwrapModifier_deformVerts(ModifierData *md, Object *ob, Derived
|
||||
CustomDataMask dataMask = shrinkwrapModifier_requiredDataMask(md);
|
||||
|
||||
/* We implement requiredDataMask but thats not really usefull since mesh_calc_modifiers pass a NULL derivedData or without the modified vertexs applied */
|
||||
if(shrinkwrapModifier_requiredDataMask(md))
|
||||
if(dataMask)
|
||||
{
|
||||
if(derivedData) dm = CDDM_copy(derivedData);
|
||||
else if(ob->type==OB_MESH) dm = CDDM_from_mesh(ob->data, ob);
|
||||
@ -7797,6 +7798,109 @@ static void shrinkwrapModifier_updateDepgraph(ModifierData *md, DagForest *fores
|
||||
dag_add_relation(forest, dag_get_node(forest, smd->auxTarget), obNode, DAG_RL_OB_DATA | DAG_RL_DATA_DATA, "Shrinkwrap Modifier");
|
||||
}
|
||||
|
||||
/* SimpleDeform */
|
||||
static void simpledeformModifier_initData(ModifierData *md)
|
||||
{
|
||||
SimpleDeformModifierData *smd = (SimpleDeformModifierData*) md;
|
||||
|
||||
smd->mode = MOD_SIMPLEDEFORM_MODE_TWIST;
|
||||
smd->axis = 0;
|
||||
|
||||
smd->origin = NULL;
|
||||
smd->factor = 0.35f;
|
||||
smd->limit[0] = 0.0f;
|
||||
smd->limit[1] = 1.0f;
|
||||
}
|
||||
|
||||
static void simpledeformModifier_copyData(ModifierData *md, ModifierData *target)
|
||||
{
|
||||
SimpleDeformModifierData *smd = (SimpleDeformModifierData*)md;
|
||||
SimpleDeformModifierData *tsmd = (SimpleDeformModifierData*)target;
|
||||
|
||||
tsmd->mode = smd->mode;
|
||||
tsmd->axis = smd->axis;
|
||||
tsmd->origin= smd->origin;
|
||||
tsmd->factor= smd->factor;
|
||||
memcpy(tsmd->limit, smd->limit, sizeof(tsmd->limit));
|
||||
}
|
||||
|
||||
static CustomDataMask simpledeformModifier_requiredDataMask(ModifierData *md)
|
||||
{
|
||||
SimpleDeformModifierData *smd = (SimpleDeformModifierData *)md;
|
||||
CustomDataMask dataMask = 0;
|
||||
|
||||
/* ask for vertexgroups if we need them */
|
||||
if(smd->vgroup_name[0])
|
||||
dataMask |= (1 << CD_MDEFORMVERT);
|
||||
|
||||
return dataMask;
|
||||
}
|
||||
|
||||
static void simpledeformModifier_foreachObjectLink(ModifierData *md, Object *ob, void (*walk)(void *userData, Object *ob, Object **obpoin), void *userData)
|
||||
{
|
||||
SimpleDeformModifierData *smd = (SimpleDeformModifierData*)md;
|
||||
walk(userData, ob, &smd->origin);
|
||||
}
|
||||
|
||||
static void simpledeformModifier_updateDepgraph(ModifierData *md, DagForest *forest, Object *ob, DagNode *obNode)
|
||||
{
|
||||
SimpleDeformModifierData *smd = (SimpleDeformModifierData*)md;
|
||||
|
||||
if (smd->origin)
|
||||
dag_add_relation(forest, dag_get_node(forest, smd->origin), obNode, DAG_RL_OB_DATA, "SimpleDeform Modifier");
|
||||
}
|
||||
|
||||
static void simpledeformModifier_deformVerts(ModifierData *md, Object *ob, DerivedMesh *derivedData, float (*vertexCos)[3], int numVerts)
|
||||
{
|
||||
DerivedMesh *dm = NULL;
|
||||
CustomDataMask dataMask = simpledeformModifier_requiredDataMask(md);
|
||||
|
||||
/* We implement requiredDataMask but thats not really usefull since mesh_calc_modifiers pass a NULL derivedData or without the modified vertexs applied */
|
||||
if(dataMask)
|
||||
{
|
||||
if(derivedData) dm = CDDM_copy(derivedData);
|
||||
else if(ob->type==OB_MESH) dm = CDDM_from_mesh(ob->data, ob);
|
||||
else return;
|
||||
|
||||
if(dataMask & CD_MVERT)
|
||||
{
|
||||
CDDM_apply_vert_coords(dm, vertexCos);
|
||||
CDDM_calc_normals(dm);
|
||||
}
|
||||
}
|
||||
|
||||
SimpleDeformModifier_do((SimpleDeformModifierData*)md, ob, dm, vertexCos, numVerts);
|
||||
|
||||
if(dm)
|
||||
dm->release(dm);
|
||||
|
||||
}
|
||||
|
||||
static void simpledeformModifier_deformVertsEM(ModifierData *md, Object *ob, EditMesh *editData, DerivedMesh *derivedData, float (*vertexCos)[3], int numVerts)
|
||||
{
|
||||
DerivedMesh *dm = NULL;
|
||||
CustomDataMask dataMask = simpledeformModifier_requiredDataMask(md);
|
||||
|
||||
/* We implement requiredDataMask but thats not really usefull since mesh_calc_modifiers pass a NULL derivedData or without the modified vertexs applied */
|
||||
if(dataMask)
|
||||
{
|
||||
if(derivedData) dm = CDDM_copy(derivedData);
|
||||
else if(ob->type==OB_MESH) dm = CDDM_from_editmesh(editData, ob->data);
|
||||
else return;
|
||||
|
||||
if(dataMask & CD_MVERT)
|
||||
{
|
||||
CDDM_apply_vert_coords(dm, vertexCos);
|
||||
CDDM_calc_normals(dm);
|
||||
}
|
||||
}
|
||||
|
||||
SimpleDeformModifier_do((SimpleDeformModifierData*)md, ob, dm, vertexCos, numVerts);
|
||||
|
||||
if(dm)
|
||||
dm->release(dm);
|
||||
}
|
||||
|
||||
/***/
|
||||
|
||||
static ModifierTypeInfo typeArr[NUM_MODIFIER_TYPES];
|
||||
@ -8154,6 +8258,20 @@ ModifierTypeInfo *modifierType_getInfo(ModifierType type)
|
||||
mti->deformVertsEM = shrinkwrapModifier_deformVertsEM;
|
||||
mti->updateDepgraph = shrinkwrapModifier_updateDepgraph;
|
||||
|
||||
mti = INIT_TYPE(SimpleDeform);
|
||||
mti->type = eModifierTypeType_OnlyDeform;
|
||||
mti->flags = eModifierTypeFlag_AcceptsMesh
|
||||
| eModifierTypeFlag_AcceptsCVs
|
||||
| eModifierTypeFlag_SupportsEditmode
|
||||
| eModifierTypeFlag_EnableInEditmode;
|
||||
mti->initData = simpledeformModifier_initData;
|
||||
mti->copyData = simpledeformModifier_copyData;
|
||||
mti->requiredDataMask = simpledeformModifier_requiredDataMask;
|
||||
mti->deformVerts = simpledeformModifier_deformVerts;
|
||||
mti->deformVertsEM = simpledeformModifier_deformVertsEM;
|
||||
mti->foreachObjectLink = simpledeformModifier_foreachObjectLink;
|
||||
mti->updateDepgraph = simpledeformModifier_updateDepgraph;
|
||||
|
||||
typeArrInit = 0;
|
||||
#undef INIT_TYPE
|
||||
}
|
||||
|
248
source/blender/blenkernel/intern/simple_deform.c
Normal file
248
source/blender/blenkernel/intern/simple_deform.c
Normal file
@ -0,0 +1,248 @@
|
||||
/**
|
||||
* deform_simple.c
|
||||
*
|
||||
* ***** BEGIN GPL LICENSE BLOCK *****
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software Foundation,
|
||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* The Original Code is Copyright (C) Blender Foundation.
|
||||
* All rights reserved.
|
||||
*
|
||||
* The Original Code is: all of this file.
|
||||
*
|
||||
* Contributor(s): André Pinto
|
||||
*
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
#include "DNA_object_types.h"
|
||||
#include "DNA_modifier_types.h"
|
||||
#include "DNA_meshdata_types.h"
|
||||
|
||||
#include "BKE_simple_deform.h"
|
||||
#include "BKE_DerivedMesh.h"
|
||||
#include "BKE_deform.h"
|
||||
#include "BKE_utildefines.h"
|
||||
#include "BLI_arithb.h"
|
||||
#include "BKE_shrinkwrap.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
||||
|
||||
//Clamps/Limits the given coordinate to: limits[0] <= co[axis] <= limits[1]
|
||||
//The ammount of clamp is saved on dcut
|
||||
static void axis_limit(int axis, const float limits[2], float co[3], float dcut[3])
|
||||
{
|
||||
float val = co[axis];
|
||||
if(limits[0] > val) val = limits[0];
|
||||
if(limits[1] < val) val = limits[1];
|
||||
|
||||
dcut[axis] = co[axis] - val;
|
||||
co[axis] = val;
|
||||
}
|
||||
|
||||
static void simpleDeform_taper(const float factor, const float dcut[3], float *co)
|
||||
{
|
||||
float x = co[0], y = co[1], z = co[2];
|
||||
float scale = z*factor;
|
||||
|
||||
co[0] = x + x*scale;
|
||||
co[1] = y + y*scale;
|
||||
co[2] = z;
|
||||
|
||||
if(dcut)
|
||||
{
|
||||
co[0] += dcut[0];
|
||||
co[1] += dcut[1];
|
||||
co[2] += dcut[2];
|
||||
}
|
||||
}
|
||||
|
||||
static void simpleDeform_stretch(const float factor, const float dcut[3], float *co)
|
||||
{
|
||||
float x = co[0], y = co[1], z = co[2];
|
||||
float scale;
|
||||
|
||||
scale = (z*z*factor-factor + 1.0);
|
||||
|
||||
co[0] = x*scale;
|
||||
co[1] = y*scale;
|
||||
co[2] = z*(1.0+factor);
|
||||
|
||||
|
||||
if(dcut)
|
||||
{
|
||||
co[0] += dcut[0];
|
||||
co[1] += dcut[1];
|
||||
co[2] += dcut[2];
|
||||
}
|
||||
}
|
||||
|
||||
static void simpleDeform_twist(const float factor, const float *dcut, float *co)
|
||||
{
|
||||
float x = co[0], y = co[1], z = co[2];
|
||||
float theta, sint, cost;
|
||||
|
||||
theta = z*factor;
|
||||
sint = sin(theta);
|
||||
cost = cos(theta);
|
||||
|
||||
co[0] = x*cost - y*sint;
|
||||
co[1] = x*sint + y*cost;
|
||||
co[2] = z;
|
||||
|
||||
if(dcut)
|
||||
{
|
||||
co[0] += dcut[0];
|
||||
co[1] += dcut[1];
|
||||
co[2] += dcut[2];
|
||||
}
|
||||
}
|
||||
|
||||
static void simpleDeform_bend(const float factor, const float dcut[3], float *co)
|
||||
{
|
||||
float x = co[0], y = co[1], z = co[2];
|
||||
float theta, sint, cost;
|
||||
|
||||
theta = x*factor;
|
||||
sint = sin(theta);
|
||||
cost = cos(theta);
|
||||
|
||||
if(fabs(factor) > 1e-7f)
|
||||
{
|
||||
co[0] = -(y-1.0f/factor)*sint;
|
||||
co[1] = (y-1.0f/factor)*cost + 1.0f/factor;
|
||||
co[2] = z;
|
||||
}
|
||||
|
||||
|
||||
if(dcut)
|
||||
{
|
||||
co[0] += cost*dcut[0];
|
||||
co[1] += sint*dcut[0];
|
||||
co[2] += dcut[2];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* simple deform modifier */
|
||||
void SimpleDeformModifier_do(SimpleDeformModifierData *smd, struct Object *ob, struct DerivedMesh *dm, float (*vertexCos)[3], int numVerts)
|
||||
{
|
||||
static const float lock_axis[2] = {0.0f, 0.0f};
|
||||
|
||||
int i;
|
||||
int limit_axis = 0;
|
||||
float smd_limit[2], smd_factor;
|
||||
SpaceTransform *transf = NULL, tmp_transf;
|
||||
void (*simpleDeform_callback)(const float factor, const float dcut[3], float *co) = NULL; //Mode callback
|
||||
int vgroup = get_named_vertexgroup_num(ob, smd->vgroup_name);
|
||||
MDeformVert *dvert = NULL;
|
||||
|
||||
//Safe-check
|
||||
if(smd->origin == ob) smd->origin = NULL; //No self references
|
||||
|
||||
if(smd->limit[0] < 0.0) smd->limit[0] = 0.0f;
|
||||
if(smd->limit[0] > 1.0) smd->limit[0] = 1.0f;
|
||||
|
||||
smd->limit[0] = MIN2(smd->limit[0], smd->limit[1]); //Upper limit >= than lower limit
|
||||
|
||||
//Calculate matrixs do convert between coordinate spaces
|
||||
if(smd->origin)
|
||||
{
|
||||
transf = &tmp_transf;
|
||||
|
||||
if(smd->originOpts & MOD_SIMPLEDEFORM_ORIGIN_LOCAL)
|
||||
{
|
||||
space_transform_from_matrixs(transf, ob->obmat, smd->origin->obmat);
|
||||
}
|
||||
else
|
||||
{
|
||||
Mat4CpyMat4(transf->local2target, smd->origin->obmat);
|
||||
Mat4Invert(transf->target2local, transf->local2target);
|
||||
}
|
||||
}
|
||||
|
||||
//Setup vars
|
||||
limit_axis = (smd->mode == MOD_SIMPLEDEFORM_MODE_BEND) ? 0 : 2; //Bend limits on X.. all other modes limit on Z
|
||||
|
||||
//Update limits if needed
|
||||
{
|
||||
float lower = FLT_MAX;
|
||||
float upper = -FLT_MAX;
|
||||
|
||||
for(i=0; i<numVerts; i++)
|
||||
{
|
||||
float tmp[3];
|
||||
VECCOPY(tmp, vertexCos[i]);
|
||||
|
||||
if(transf) space_transform_apply(transf, tmp);
|
||||
|
||||
lower = MIN2(lower, tmp[limit_axis]);
|
||||
upper = MAX2(upper, tmp[limit_axis]);
|
||||
}
|
||||
|
||||
|
||||
//SMD values are normalized to the BV, calculate the absolut values
|
||||
smd_limit[1] = lower + (upper-lower)*smd->limit[1];
|
||||
smd_limit[0] = lower + (upper-lower)*smd->limit[0];
|
||||
|
||||
smd_factor = smd->factor / MAX2(FLT_EPSILON, smd_limit[1]-smd_limit[0]);
|
||||
}
|
||||
|
||||
|
||||
if(dm)
|
||||
dvert = dm->getVertDataArray(dm, CD_MDEFORMVERT);
|
||||
|
||||
|
||||
switch(smd->mode)
|
||||
{
|
||||
case MOD_SIMPLEDEFORM_MODE_TWIST: simpleDeform_callback = simpleDeform_twist; break;
|
||||
case MOD_SIMPLEDEFORM_MODE_BEND: simpleDeform_callback = simpleDeform_bend; break;
|
||||
case MOD_SIMPLEDEFORM_MODE_TAPER: simpleDeform_callback = simpleDeform_taper; break;
|
||||
case MOD_SIMPLEDEFORM_MODE_STRETCH: simpleDeform_callback = simpleDeform_stretch; break;
|
||||
default:
|
||||
return; //No simpledeform mode?
|
||||
}
|
||||
|
||||
for(i=0; i<numVerts; i++)
|
||||
{
|
||||
float weight = vertexgroup_get_vertex_weight(dvert, i, vgroup);
|
||||
|
||||
if(weight != 0.0f)
|
||||
{
|
||||
float co[3], dcut[3] = {0.0f, 0.0f, 0.0f};
|
||||
|
||||
if(transf) space_transform_apply(transf, vertexCos[i]);
|
||||
|
||||
VECCOPY(co, vertexCos[i]);
|
||||
|
||||
//Apply axis limits
|
||||
if(smd->mode != MOD_SIMPLEDEFORM_MODE_BEND) //Bend mode shoulnt have any lock axis
|
||||
{
|
||||
if(smd->axis & MOD_SIMPLEDEFORM_LOCK_AXIS_X) axis_limit(0, lock_axis, co, dcut);
|
||||
if(smd->axis & MOD_SIMPLEDEFORM_LOCK_AXIS_Y) axis_limit(1, lock_axis, co, dcut);
|
||||
}
|
||||
axis_limit(limit_axis, smd_limit, co, dcut);
|
||||
|
||||
simpleDeform_callback(smd_factor, dcut, co); //Apply deform
|
||||
VecLerpf(vertexCos[i], vertexCos[i], co, weight); //Use vertex weight has coef of linear interpolation
|
||||
|
||||
if(transf) space_transform_invert(transf, vertexCos[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -38,6 +38,7 @@ typedef enum ModifierType {
|
||||
eModifierType_Shrinkwrap,
|
||||
eModifierType_Fluidsim,
|
||||
eModifierType_Mask,
|
||||
eModifierType_SimpleDeform,
|
||||
NUM_MODIFIER_TYPES
|
||||
} ModifierType;
|
||||
|
||||
@ -560,4 +561,32 @@ typedef struct ShrinkwrapModifierData {
|
||||
#define MOD_SHRINKWRAP_PROJECT_OVER_Z_AXIS (1<<2)
|
||||
#define MOD_SHRINKWRAP_PROJECT_OVER_NORMAL 0 /* projection over normal is used if no axis is selected */
|
||||
|
||||
|
||||
typedef struct SimpleDeformModifierData {
|
||||
ModifierData modifier;
|
||||
|
||||
struct Object *origin; /* object to control the origin of modifier space coordinates */
|
||||
char vgroup_name[32]; /* optional vertexgroup name */
|
||||
float factor; /* factors to control simple deforms */
|
||||
float limit[2]; /* lower and upper limit */
|
||||
|
||||
char mode; /* deform function */
|
||||
char axis; /* lock axis (for taper and strech) */
|
||||
char originOpts; /* originOptions */
|
||||
char pad;
|
||||
|
||||
} SimpleDeformModifierData;
|
||||
|
||||
#define MOD_SIMPLEDEFORM_MODE_TWIST 1
|
||||
#define MOD_SIMPLEDEFORM_MODE_BEND 2
|
||||
#define MOD_SIMPLEDEFORM_MODE_TAPER 3
|
||||
#define MOD_SIMPLEDEFORM_MODE_STRETCH 4
|
||||
|
||||
#define MOD_SIMPLEDEFORM_LOCK_AXIS_X (1<<0)
|
||||
#define MOD_SIMPLEDEFORM_LOCK_AXIS_Y (1<<1)
|
||||
|
||||
/* indicates whether simple deform should use the local
|
||||
coordinates or global coordinates of origin */
|
||||
#define MOD_SIMPLEDEFORM_ORIGIN_LOCAL (1<<0)
|
||||
|
||||
#endif
|
||||
|
@ -1852,6 +1852,13 @@ static void draw_modifier(uiBlock *block, Object *ob, ModifierData *md, int *xco
|
||||
height += 19;
|
||||
} else if (md->type == eModifierType_Mask) {
|
||||
height = 66;
|
||||
} else if (md->type==eModifierType_SimpleDeform) {
|
||||
SimpleDeformModifierData *smd = (SimpleDeformModifierData*) md;
|
||||
height += 19*5;
|
||||
if(smd->origin != NULL) height += 19;
|
||||
if(smd->mode == MOD_SIMPLEDEFORM_MODE_STRETCH
|
||||
|| smd->mode == MOD_SIMPLEDEFORM_MODE_TAPER )
|
||||
height += 19;
|
||||
}
|
||||
/* roundbox 4 free variables: corner-rounding, nop, roundbox type, shade */
|
||||
uiDefBut(block, ROUNDBOX, 0, "", x-10, y-height-2, width, height-2, NULL, 5.0, 0.0, 12, 40, "");
|
||||
@ -2548,6 +2555,30 @@ static void draw_modifier(uiBlock *block, Object *ob, ModifierData *md, int *xco
|
||||
|
||||
uiBlockEndAlign(block);
|
||||
|
||||
} else if (md->type==eModifierType_SimpleDeform) {
|
||||
SimpleDeformModifierData *smd = (SimpleDeformModifierData*) md;
|
||||
char simpledeform_modemenu[] = "Deform type%t|Twist %x1|Bend %x2|Taper %x3|Strech %x4";
|
||||
|
||||
uiDefButC(block, MENU, B_MODIFIER_RECALC, simpledeform_modemenu, lx,(cy-=19),buttonWidth,19, &smd->mode, 0, 0, 0, 0, "Selects type of deform to apply to object.");
|
||||
|
||||
but=uiDefBut(block, TEX, B_MODIFIER_RECALC, "VGroup: ", lx, (cy-=19), buttonWidth,19, &smd->vgroup_name, 0, 31, 0, 0, "Vertex Group name");
|
||||
uiButSetCompleteFunc(but, autocomplete_vgroup, (void *)ob);
|
||||
|
||||
uiDefIDPoinBut(block, test_obpoin_but, ID_OB, B_CHANGEDEP, "Ob: ", lx, (cy-=19), buttonWidth,19, &smd->origin, "Origin of modifier space coordinates");
|
||||
if(smd->origin != NULL)
|
||||
uiDefButBitC(block, TOG, MOD_SIMPLEDEFORM_ORIGIN_LOCAL, B_MODIFIER_RECALC, "Relative",lx,(cy-=19),buttonWidth,19, &smd->originOpts, 0, 0, 0, 0, "Sets the origin of deform space to be relative to the object");
|
||||
|
||||
uiDefButF(block, NUM, B_MODIFIER_RECALC, "Factor:", lx,(cy-=19),buttonWidth,19, &smd->factor, -10.0f, 10.0f, 0.5f, 0, "Deform Factor");
|
||||
|
||||
uiDefButF(block, NUM, B_MODIFIER_RECALC, "Upper Limit:", lx,(cy-=19),buttonWidth,19, &smd->limit[1], 0.0f, 1.0f, 5.0f, 0, "Upper Limit for deform");
|
||||
uiDefButF(block, NUM, B_MODIFIER_RECALC, "Lower Limit:", lx,(cy-=19),buttonWidth,19, &smd->limit[0], 0.0f, 1.0f, 5.0f, 0, "Lower Limit for deform");
|
||||
|
||||
if(smd->mode == MOD_SIMPLEDEFORM_MODE_STRETCH
|
||||
|| smd->mode == MOD_SIMPLEDEFORM_MODE_TAPER )
|
||||
{
|
||||
uiDefButBitC(block, TOG, MOD_SIMPLEDEFORM_LOCK_AXIS_X, B_MODIFIER_RECALC, "Loc X", lx, (cy-=19),buttonWidth/2,19, &smd->axis, 0, 0, 0, 0, "Disallow changes on the X coordinate");
|
||||
uiDefButBitC(block, TOG, MOD_SIMPLEDEFORM_LOCK_AXIS_Y, B_MODIFIER_RECALC, "Loc Y", lx+(buttonWidth/2), (cy),buttonWidth/2,19, &smd->axis, 0, 0, 0, 0, "Disallow changes on the Y coordinate");
|
||||
}
|
||||
}
|
||||
|
||||
uiBlockEndAlign(block);
|
||||
|
Loading…
Reference in New Issue
Block a user