All Projects → jroyalty → Jglm

jroyalty / Jglm

Licence: apache-2.0
Java OpenGL Mathematics Library

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Jglm

Shadergen
Proof-of-concept library for generating HLSL, GLSL, and Metal shader code from C#,
Stars: ✭ 395 (+797.73%)
Mutual labels:  games, opengl, graphics
Sfml
Simple and Fast Multimedia Library
Stars: ✭ 7,316 (+16527.27%)
Mutual labels:  games, opengl, graphics
Fauxgl
Software-only 3D renderer written in Go.
Stars: ✭ 658 (+1395.45%)
Mutual labels:  opengl, graphics
Pbr
An implementation of physically based shading & image based lighting in D3D11, D3D12, Vulkan, and OpenGL 4.
Stars: ✭ 722 (+1540.91%)
Mutual labels:  opengl, graphics
Bonzomatic
Live shader coding tool and Shader Showdown workhorse
Stars: ✭ 829 (+1784.09%)
Mutual labels:  opengl, graphics
Silk.net
The high-speed OpenAL, OpenGL, Vulkan, and GLFW bindings library your mother warned you about.
Stars: ✭ 534 (+1113.64%)
Mutual labels:  opengl, graphics
Hybridrenderingengine
Clustered Forward/Deferred renderer with Physically Based Shading, Image Based Lighting and a whole lot of OpenGL.
Stars: ✭ 563 (+1179.55%)
Mutual labels:  opengl, graphics
Raylib
A simple and easy-to-use library to enjoy videogames programming
Stars: ✭ 8,169 (+18465.91%)
Mutual labels:  opengl, graphics
Mathc
Pure C math library for 2D and 3D programming
Stars: ✭ 504 (+1045.45%)
Mutual labels:  graphics, math
Ionengine
3D graphics engine designed for rapid prototyping and extensibility
Stars: ✭ 25 (-43.18%)
Mutual labels:  opengl, math
Mesh Subdivision
A collection of common mesh subdivision algorithms
Stars: ✭ 25 (-43.18%)
Mutual labels:  opengl, graphics
Imgui.net
An ImGui wrapper for .NET.
Stars: ✭ 848 (+1827.27%)
Mutual labels:  games, graphics
Worldwindjava
The NASA WorldWind Java SDK (WWJ) is for building cross-platform 3D geospatial desktop applications in Java.
Stars: ✭ 526 (+1095.45%)
Mutual labels:  opengl, graphics
Handmade Math
A simple math library for games and computer graphics. Compatible with both C and C++.
Stars: ✭ 517 (+1075%)
Mutual labels:  graphics, math
Renderdoc
RenderDoc is a stand-alone graphics debugging tool.
Stars: ✭ 5,969 (+13465.91%)
Mutual labels:  opengl, graphics
Gfx
[maintenance mode] A low-overhead Vulkan-like GPU API for Rust.
Stars: ✭ 5,045 (+11365.91%)
Mutual labels:  opengl, graphics
Ashengine
A cross-platform 3D engine based on Qt 5.9.7, OpenGL 3.3 and Assimp 4.1.
Stars: ✭ 35 (-20.45%)
Mutual labels:  opengl, graphics
Joml
A Java math library for OpenGL rendering calculations
Stars: ✭ 479 (+988.64%)
Mutual labels:  opengl, math
Renderhelp
⚡️ 可编程渲染管线实现,帮助初学者学习渲染
Stars: ✭ 494 (+1022.73%)
Mutual labels:  opengl, graphics
Cglm
📽 Highly Optimized Graphics Math (glm) for C
Stars: ✭ 887 (+1915.91%)
Mutual labels:  opengl, math

JGLM - Java OpenGL Mathematics Library

Build Status

A conceptual port of the OpenGL Mathematics C++ library (GLM). I call this conceptual because a direct port of GLM to Java 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 Java.

The current version is 1.0.0.

Using

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

<dependency>
    <groupId>com.hackoeur</groupId>
    <artifactId>jglm</artifactId>
    <version>1.0.0</version>
</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:

mvn clean install

Legal stuff

Copyright (C) 2013, 2014, 2015 James Royalty

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].