MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / div

Method div

src/main/java/field/linalg/Vec4.java:701–707  ·  view source on GitHub ↗

Divide this Vec4 component-wise by the given Vec4. @param v the vector to divide by @return this

(Vec4 v)

Source from the content-addressed store, hash-verified

699 * @param v the vector to divide by
700 * @return this
701 */
702 public Vec4 div(Vec4 v) {
703 x /= v.x;
704 y /= v.y;
705 z /= v.z;
706 z /= v.w;
707 return this;
708 }
709
710 /**

Callers 3

projectMethod · 0.95
__div__Method · 0.95
__rdiv__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected