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

Method dot

src/main/java/com/volmit/adapt/util/Vector3d.java:152–154  ·  view source on GitHub ↗

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

(Vector3d v1)

Source from the content-addressed store, hash-verified

150 * @return the dot product of this and v1
151 */
152 public final double dot(Vector3d v1) {
153 return (this.x * v1.x + this.y * v1.y + this.z * v1.z);
154 }
155
156
157 /**

Callers 2

angleMethod · 0.95
closestMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected