diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-05-11 14:30:49 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-05-11 14:30:49 +0000 |
commit | 637c0a02f96ae3262337ff836a8c336a136f496a (patch) | |
tree | 2aca81436b19d7577c5ca3181e61896994696e7a /src | |
parent | 59b9067519755792b1f70a902a3cbba5424fd3da (diff) |
added an outlet to t_matrix (needed by mtx_inverse)
svn path=/trunk/externals/iem/iemmatrix/; revision=2951
Diffstat (limited to 'src')
-rw-r--r-- | src/iemmatrix.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/iemmatrix.h b/src/iemmatrix.h index 025358d..6622441 100644 --- a/src/iemmatrix.h +++ b/src/iemmatrix.h @@ -80,7 +80,8 @@ typedef struct _matrix int current_row, current_col; /* this makes things easy for the mtx_row & mtx_col...*/ t_float f; - t_canvas *x_canvas; + t_canvas *x_canvas; /* needed for file-reading */ + t_outlet *x_outlet; /* just in case somebody wants an outlet */ } t_matrix; typedef struct _mtx_binscalar |