MCPcopy Create free account
hub / github.com/DjDeveloperr/deno_desktop / dot

Method dot

examples/extern/gmath.bundle.js:367–370  ·  view source on GitHub ↗
(other)

Source from the content-addressed store, hash-verified

365 return this.normal().mul(length);
366 }
367 dot(other) {
368 const { x , y , z } = this.mul(other);
369 return x + y + z;
370 }
371 cross(other) {
372 return new Vector3(this.y * other.z - this.z * other.y, this.z * other.x - this.x * other.z, this.x * other.y - this.y * other.x);
373 }

Callers 4

lookToRhMethod · 0.45
fromArcMethod · 0.45
betweenMethod · 0.45
dotMethod · 0.45

Calls 1

mulMethod · 0.95

Tested by

no test coverage detected