Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

glsl-transpose

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glsl-transpose

Transpose a matrix in GLSL

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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, either float, mat2, mat3 or mat4

Returns The transpose of m

License

(c) 2014 Mikola Lysenko. MIT License

Keywords

FAQs

Package last updated on 10 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc