added missing 'import bpy' from uvcalc_smart_project

removed 2 unused vars from DNA_object_types.h
This commit is contained in:
Campbell Barton 2007-04-14 10:37:58 +00:00
parent 61b6f47faf
commit 0a411c4704
2 changed files with 3 additions and 4 deletions

@ -44,7 +44,7 @@ selected faces, or all faces.
from Blender import Object, Draw, Window, sys, Mesh, Geometry
from Blender.Mathutils import CrossVecs, Matrix, Vector, RotationMatrix, DotVecs
import bpy
from math import cos
DEG_TO_RAD = 0.017453292519943295 # pi/180.0

@ -89,7 +89,6 @@ typedef struct Object {
short type, partype;
int par1, par2, par3; /* can be vertexnrs */
char parsubstr[32]; /* String describing subobject info */
void *pardata;
struct Object *parent, *track;
/* if ob->proxy (or proxy_group), this object is proxy for object ob->proxy */
/* proxy_from is set in target back to the proxy. */
@ -149,13 +148,13 @@ typedef struct Object {
* For a Sphere, the form factor is by default = 0.4
*/
float formfactor, softtime; /* softtime temp for softbody, remove it before release! */
float formfactor;
float rdamping, sizefac;
char dt, dtx;
char totcol; /* copy of mesh or curve or meta */
char actcol;
char empty_drawtype, pad1[3];
char empty_drawtype, pad1[7];
float empty_drawsize;
ScriptLink scriptlink;