mat4.opOpAssign - multiple declarations
Function mat4.opOpAssign
multiply this matrix by another matrix
Function mat4.opOpAssign
add value to all components of matrix
void opOpAssign(string op : "+")(
float v
);
Function mat4.opOpAssign
multiply all components of matrix by value
void opOpAssign(string op : "*")(
float v
);
Function mat4.opOpAssign
subtract value from all components of matrix
void opOpAssign(string op : "-")(
float v
);
Function mat4.opOpAssign
divide all components of vector by matrix
void opOpAssign(string op : "/")(
float v
);