* Fixed:
- Object_getMatrix() - prints correct values now - Object_getName() - removes the two identifying chars from the front - Object_setName() - calls the internal function to correctly set the name of the object. * Removed the Object_print function. It causes a crash on Windows. * Updated the Object_repr function to display the Object nicely. * Object.Get() now returns a list of Objects when no argument has passed to it. * Changed the function declaration for newMatrixObject function Easier to read now.
This commit is contained in:
@@ -125,7 +125,7 @@ PyTypeObject Matrix_Type =
|
||||
&Matrix_SeqMethods, /*tp_as_sequence*/
|
||||
};
|
||||
|
||||
PyObject * newMatrixObject (Matrix4Ptr mat)
|
||||
PyObject * newMatrixObject (float mat[][4])
|
||||
{
|
||||
MatrixObject * self;
|
||||
|
||||
|
Reference in New Issue
Block a user