soc-2008-mxcurioni: ported ALL 1D unary functions, representing 32 new classes.

This commit is contained in:
Maxime Curioni
2008-07-27 11:27:59 +00:00
parent 0cc6f9db3d
commit 2b2df54aef
83 changed files with 5761 additions and 339 deletions

View File

@@ -168,7 +168,7 @@ PyObject * UnaryFunction0DVectorViewShape___call__( BPy_UnaryFunction0DVectorVie
std::vector<ViewShape*> vs( self->uf0D_vectorviewshape->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) );
PyObject *list = PyList_New(NULL);
for( int i = 0; i < vs.size(); i++)
for( unsigned int i = 0; i < vs.size(); i++)
PyList_Append(list, BPy_ViewShape_from_ViewShape(*( vs[i] )) );
return list;