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

Method neg

examples/extern/gmath.bundle.js:597–599  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

595 return new Vector4(this.x / x, this.y / y, this.z / z, this.w / w7);
596 }
597 neg() {
598 return new Vector4(-this.x, -this.y, -this.z, -this.w);
599 }
600 midpoint(other) {
601 return other.sub(this).div(2).add(this);
602 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected