MCPcopy Create free account
hub / github.com/corbanbrook/dsp.js / PVector

Function PVector

examples/js/processing.js:33–37  ·  view source on GitHub ↗
(x, y, z)

Source from the content-addressed store, hash-verified

31 };
32
33 var PVector = function(x, y, z) {
34 this.x = x || 0;
35 this.y = y || 0;
36 this.z = z || 0;
37 },
38 createPVectorMethod = function(method) {
39 return function(v1, v2) {
40 var v = v1.get();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected