Made RotationMatrix accept values outside 360,

added object.type to be used instead of .getType()
This commit is contained in:
2006-08-08 14:34:38 +00:00
parent fde5381a94
commit b44ae44c72
2 changed files with 9 additions and 3 deletions

View File

@@ -3591,6 +3591,8 @@ static PyObject *Object_getAttr( BPy_Object * obj, char *name )
if( StringEqual( name, "track" ) )
return Object_CreatePyObject( object->track );
if( StringEqual( name, "type" ) )
return Object_getType( obj );
if( StringEqual( name, "data" ) ) {
PyObject *getdata, *tuple = PyTuple_New(0);