Home
last modified time | relevance | path

Searched refs:PVector (Results 1 – 1 of 1) sorted by relevance

/plugin/processing/
Dscript.js866 var PVector = (function() { class
867 function PVector(x, y, z) { class in anonymousFunctionb9c9fa890200.PVector
890 PVector.angleBetween = function(v1, v2) {
895 PVector.prototype = { class
906 return new PVector(this.x, this.y, this.z);
969 return new PVector(this.y * v.z - v.y * this.z,
997 PVector[simplePVMethods[method]] = createSimplePVectorMethod(simplePVMethods[method]);
1000 for (method in PVector.prototype) {
1001 if (PVector.prototype.hasOwnProperty(method) && !PVector.hasOwnProperty(method)) {
1002 PVector[method] = createPVectorMethod(method);
[all …]