Home | History | Annotate | Download | only in resources

Lines Matching defs:translate

60         void translate(in float x, in float y, in float z); // multiply the matrix by passed translation values on the right
61 void translate(in J3DVector3 v); // multiply the matrix by passed translation values on the right
80 bool decompose(in J3DVector3 translate, // decompose the matrix into the passed vector
345 J3DIMatrix4.prototype.translate = function(x,y,z)
363 this.$matrix = this.$matrix.translate(x, y, z);
763 matrix.translate(-eyex, -eyey, -eyez);
776 var translate, rotate, scale, skew, perspective;
778 var translate = (_translate == undefined || !("length" in _translate)) ? new J3DIVector3 : _translate;
824 translate[0] = matrix.$matrix.m41
826 translate[1] = matrix.$matrix.m42
828 translate[2] = matrix.$matrix.m43