(x, y, z)
| 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(); |
nothing calls this directly
no outgoing calls
no test coverage detected