An open API service indexing awesome lists of open source software.

https://github.com/ponup/glm

A port of the OpenGL Mathematics library (GLM) to PHP
https://github.com/ponup/glm

glm math opengl

Last synced: 10 months ago
JSON representation

A port of the OpenGL Mathematics library (GLM) to PHP

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/Ponup/glm.svg?branch=master)](https://travis-ci.org/Ponup/glm)

# PHP GLM

A port of the GLM library to the PHP language.

## Example usage

```php
scale(5), PHP_EOL;
// Output: mat4x4((5.000000, 0.000000, 0.000000, 0.000000), (0.000000, 5.000000, 0.000000, 0.000000), (0.000000, 0.000000, 5.000000, 0.000000), (0.000000, 0.000000, 0.000000, 1.000000))
```