(file, outputType)
| 194 | file.write(INDENT + 'return mxp_mat * mxp_in;\n') |
| 195 | |
| 196 | def _writeTwoArgumentCombine(file, outputType): |
| 197 | if outputType == 'color': |
| 198 | outputType = 'color3'; |
| 199 | file.write(INDENT + 'return mk_' + outputType + '(mxp_in1, mxp_in2);\n') |
| 200 | |
| 201 | def _writeThreeArgumentCombine(file, outputType): |
| 202 | if outputType == 'color': |