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

Method neg

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

Source from the content-addressed store, hash-verified

413 return new Vector3(this.x / x, this.y / y, this.z / z);
414 }
415 neg() {
416 return new Vector3(-this.x, -this.y, -this.z);
417 }
418 midpoint(other) {
419 return other.sub(this).div(2).add(this);
420 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected