Lines Matching refs:_round
15 * @method _round
18 _round: function(val) {
196 matrix[i][j] = MatrixUtil._round(matrix[i][j] * multiplier);
325 sx = MatrixUtil._round(Math.sqrt(a * a + b * b));
329 shear = MatrixUtil._round(a * c + b * d);
333 sy = MatrixUtil._round(Math.sqrt(c * c + d * d));
348 shear = MatrixUtil._round(MatrixUtil.rad2deg(Math.atan(shear)));
349 rotate = MatrixUtil._round(MatrixUtil.rad2deg(Math.atan2(matrix[1][0], matrix[0][0])));
593 * @method _round
596 _round: function(val) {
647 x = this._round(Math.tan(this.angle2rad(x)));
652 y = this._round(Math.tan(this.angle2rad(y)));
778 sin = this._round(Math.sin(rad)),
779 cos = this._round(Math.cos(rad));