glsl-transpose
v1.0.0
Published
Transpose a matrix in GLSL
Downloads
67
Readme
glsl-transpose
Transpose a matrix in GLSL.
Example
#pragma glslify: transpose = require(glsl-transpose)
void main() {
mat3 m = mat3(1, 2, 3,
4, 5, 6,
7, 8, 9);
mat3 mt = transpose(m);
//now mt is the transpose of m
}
Usage
Install with npm:
npm install glsl-transpose
Then use with glslify.
API
#pragma glslify: transpose = require(glsl-transpose)
mt = transpose(float|mat2|mat3|mat4 m)
Computes the transpose of a matrix
m
is a matrix to transpose, eitherfloat, mat2, mat3
ormat4
Returns The transpose of m
License
(c) 2014 Mikola Lysenko. MIT License