vec3.opOpAssign - multiple declarations

Function vec3.opOpAssign

add value to all components of vector

Prototype

ref vec3 opOpAssign(string op)(
  float v
);

Function vec3.opOpAssign

multiply all components of vector by value

Prototype

ref vec3 opOpAssign(string op)(
  float v
);

Function vec3.opOpAssign

subtract value from all components of vector

Prototype

ref vec3 opOpAssign(string op)(
  float v
);

Function vec3.opOpAssign

divide all components of vector by value

Prototype

ref vec3 opOpAssign(string op)(
  float v
);

Function vec3.opOpAssign

by component add values of corresponding components of other vector

Prototype

ref vec3 opOpAssign(string op)(
  const vec3 v
);

Function vec3.opOpAssign

by component multiply values of corresponding components of other vector

Prototype

ref vec3 opOpAssign(string op)(
  const vec3 v
);

Function vec3.opOpAssign

by component subtract values of corresponding components of other vector

Prototype

ref vec3 opOpAssign(string op)(
  const vec3 v
);

Function vec3.opOpAssign

by component divide values of corresponding components of other vector

Prototype

ref vec3 opOpAssign(string op)(
  const vec3 v
);

Authors

Copyright

License