Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dumpMatrix (0.71 sec)

  1. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    	element.setAttribute("transform", s);
    }
    
    /**
     * Dumps a matrix to a string (useful for debug).
     */
    function dumpMatrix(matrix) {
    	var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n  " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n  0, 0, 1 ]";
    
    	return s;
    }
    
    /**
     * Sets attributes of an element.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top