- 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:
2003-07-06 19:58:27 +00:00
parent 6cc94449de
commit 62ffb7a5f6
3 changed files with 40 additions and 48 deletions

View File

@@ -125,7 +125,7 @@ PyTypeObject Matrix_Type =
&Matrix_SeqMethods, /*tp_as_sequence*/
};
PyObject * newMatrixObject (Matrix4Ptr mat)
PyObject * newMatrixObject (float mat[][4])
{
MatrixObject * self;