sum of the vectors
var v = {x: 0, y: 0, z:0}; dojo.forEach(arguments, function(item){ v.x += item.x; v.y += item.y; v.z += item.z; }); return v;