项目作者: palasjir

项目描述 :
Kotlin OpenGL Mathematics Library
高级语言:
项目地址: git://github.com/palasjir/kglm.git
创建时间: 2017-01-10T16:32:01Z
项目社区:https://github.com/palasjir/kglm

开源协议:MIT License

下载


KGLM - Kotlin OpenGL Mathematics Library

A conceptual port of the OpenGL Mathematics C++
library (GLM). Inspired by JGLM. I call this conceptual because a direct port of GLM to Kotlin wouldn’t
make a ton of sense. So, instead, I’ve taken the concept of providing some of
the functionality of GLSL and
the missing matrix capabilities of modern OpenGL and move those to Kotlin.

The current version is 1.0.0.

Using

KGLM is available in Maven Central so just add this to your POM (or adapt to whatever build tool you use that supports Maven artifacts):

  1. <dependency>
  2. <groupId>com.hackoeur</groupId>
  3. <artifactId>kglm</artifactId>
  4. <version>1.0.0</version>
  5. </dependency>

Building

JGLM does not require any external libraries! The only things you’ll need are

  • Java 1.6 or greater and
  • Maven 3.x

In order to build just clone the repository and run:

  1. mvn clean install