chevtche / vmmlib

A templatized C++ vector and matrix math library

Home Page:http://vmml.github.io/vmmlib/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[TOC]

Introduction

A templatized C++ vector and matrix math library.

VMMLib includes a vector and a matrix class, with additional functionality for the often-used 3d and 4d vectors and 3x3 and 4x4 matrices. More advanced features include solvers, frustum computations and frustum culling classes and spatial data structures.

VMMLib is implemented using C++ templates, making it versatile. Being a header-only library, it is very easy to integrate into your libraries and programs. There is no need to build and install a library, just include the headers and you are set. The BSD license allows the usage both in open source and commercial closed source software.

Features

VMMLib provides the following major classes:

  • Basic matrix math: vmml::vector, vmml::quaternion, vmml::matrix
  • OpenGL math: vmml::Frustum, vmml::FrustumCuller, vmml::AABB
  • Detailed @ref Changelog

Bugs

Please file a Bug Report if you find any issue with this software.

Building

VMMLib is a cross-platform library, designed to run on any modern operating system, including all Unix variants and the Windows operating system. It requires a C++11 compiler. VMMLib uses CMake to create a platform-specific build environment. The following platforms and build environments are tested:

  • Linux: Ubuntu 16.04, RHEL 6.8 (Makefile, Ninja)
  • Windows: 7 (Visual Studio 2012)
  • Mac OS X: 10.9 (Makefile, Ninja)

Building from source is as simple as:

git clone --recursive https://github.com/Eyescale/vmmlib.git
mkdir vmmlib/build
cd vmmlib/build
cmake -GNinja ..
ninja

About

A templatized C++ vector and matrix math library

http://vmml.github.io/vmmlib/

License:Other


Languages

Language:C++ 98.4%Language:CMake 1.6%