Vector4.js 191 B

12345678910
  1. function Vector4() {
  2. }
  3. Vector4.prototype.set = function(x,y,z,w) {
  4. Polycode.Vector4_set(this.__ptr, x,y,z,w)
  5. }
  6. Vector4.prototype.dot = function(u) {
  7. Polycode.Vector4_dot(this.__ptr, u)
  8. }