MCPcopy Create free account
hub / github.com/VolmitSoftware/Adapt / dot

Method dot

src/main/java/com/volmit/adapt/util/Vector2f.java:104–106  ·  view source on GitHub ↗

Computes the dot product of the this vector and vector v1. @param v1 the other vector

(Vector2f v1)

Source from the content-addressed store, hash-verified

102 * @param v1 the other vector
103 */
104 public final float dot(Vector2f v1) {
105 return (this.x * v1.x + this.y * v1.y);
106 }
107
108
109 /**

Callers 1

angleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected