Tuesday
Tuesday Documentation

The Tuesday C++ Vector Math and SIMD Library is a library of template classes and math functions with a focus on physics and graphics applications. It provides data types commonly used in games and other simulations such as vectors, quaternions, and matrices, SIMD intrinsic wrapper classes completely separate from (but compatible with) the other types, operator overloads for combining and manipulating all these types, as well as some other common mathematical functions. It was written to match the style of the C++ Standard Library and uses modern C++ features (i.e., C++14) extensively.

Major Features

Tuesday provides the following unique features over other similar libraries such as GLM:

Requirements

Tuesday requires Visual Studio 2015 or a fully C++14 compliant compiler such as GCC 5 or Clang 3.4.

Usage

Tuesday is a header-only library. Simply make sure the include directory in the root of this project is on your include path. For GCC and Clang, you might have to provide the compiler option -std=c++14 or higher as well.

Here's a small usage example:

#include <tue/mat.hpp>
#include <tue/quat.hpp>
#include <tue/simd.hpp>
#include <tue/transform.hpp>
#include <tue/vec.hpp>
using namespace tue;
void UpdatePose(
fvec3& translation,
fquat& rotation,
fmat3x4& matrix,
const fvec3& linearVelocity,
const fvec3& angularVelocity,
float deltaTime)
{
translation += linearVelocity * deltaTime;
rotation *= transform::rotation_quat(angularVelocity * deltaTime);
matrix = transform::rotation_mat<float, 4, 4>(rotation)
* transform::translation_mat<float, 3, 4>(translation);
}
void SimdUpdatePoses(
vec3<float32x4>& translations,
quat<float32x4>& rotations,
mat3x4<float32x4>& matrices,
const vec3<float32x4>& linearVelocities,
const vec3<float32x4>& angularVelocities,
float deltaTime)
{
const float32x4 deltaTimes(deltaTime);
translations += linearVelocities * deltaTimes;
rotations *= transform::rotation_quat(angularVelocities * deltaTimes);
matrices = transform::rotation_mat<float32x4, 4, 4>(rotations)
* transform::translation_mat<float32x4, 3, 4>(translations);
}

License

Copyright Jo Bates 2015.

Distributed under the Boost Software License, Version 1.0.

See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.

Bug Reporting

Please report any bugs, typos, or suggestions to https://github.com/Cincinesh/tue/issues.