mat4.opOpAssign - multiple declarations

Function mat4.opOpAssign

multiply this matrix by another matrix

void opOpAssign(string op : "*")(
  const ref mat4 m2
);

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
);