Tuesday
|
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.
Tuesday provides the following unique features over other similar libraries such as GLM:
tvec2
, tvec3
, and tvec4
are separate types. By making the dimensions template parameters, it's possible to write one template function that can operate on and/or produce vectors or matrices of multiple dimensions. For example, the transformation matrix generation functions (translation_mat
, rotation_mat
, etc.) can produce matrices of multiple sizes so long as they meet the minimum requirements of each transformation and are, at the largest, 4x4.decltype
in return types. This makes it possible for composite types to behave much more like their component types when it comes to things like implicit type conversions. For example, fvec3 + dvec3
results in a dvec3
just as float + double
results in a double
.constexpr
whenever possible which, as it turns out, is often.length
function, dot
product, or cross
product) would be horribly inefficient with SIMD intrinsics. Instead, SIMD instructions should be used to perform the same logic on multiple vectors in parallel. Tuesday is designed for this use case. For example, vec3<float32x4> v
could be thought of as 4 parallel 3D vectors (4 x-values, followed by 4 y-values, and finally 4 z-values). Something like math::dot(v)
would then compute a single float32x4
containing the dot products of those 4 parallel vectors without any inefficient component shuffling. See this answer to a naive question I asked on Stack Overflow a few years back for some more rationale.float
, double
, int8_t
, int16_t
, int32_t
, int64_t
, uint8_t
, uint16_t
, uint32_t
, and uint64_t
) along with sized boolean types (bool8
, bool16
, bool32
and bool64
). If SIMD-intrinsic acceleration isn't available for a particular type, there's a standard C++-compliant fallback. If a vector has too many components for acceleration, but a smaller vector with the same component type can be accelerated, then the larger vector is simply the composite of two smaller vectors. For example, if float32x4
is accelerated but float32x8
isn't, then float32x8
will at least be partially-accelerated in that it's made of two float32x4
's.Tuesday requires Visual Studio 2015 or a fully C++14 compliant compiler such as GCC 5 or Clang 3.4.
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:
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.
Please report any bugs, typos, or suggestions to https://github.com/Cincinesh/tue/issues.