Hi, I need to make a copy of a cairo.Matrix. This does not work correctly:
import copy matrix2 = copy.copy(matrix) while this does but seems like an ugly work-around to me: matrix2 = cairo.Matrix() * matrix Is there another (clean) way to do this? Or should I file a bug? Dominique _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
