MCPcopy Index your code
hub / github.com/DeepNotesApp/DeepNotes / pow

Method pow

packages/@stdlib/misc/src/vec2.ts:88–90  ·  view source on GitHub ↗
(power: number)

Source from the content-addressed store, hash-verified

86 }
87
88 pow(power: number): Vec2 {
89 return new Vec2(Math.pow(this.x, power), Math.pow(this.y, power));
90 }
91 sqr(): number {
92 return this.dot(this);
93 }

Callers 3

createDoubleClickCheckerFunction · 0.80
easeInOutQuintFunction · 0.80
performMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected