rtm/2.3.0

Realtime Math
Recipe info
2024-02-17

Available packages
Header Only

Install
Add the following line to your conanfile.txt:
[requires]
rtm/2.3.0

Using rtm

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
rtm/2.3.0
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("rtm/2.3.0")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): rtm
  • CMake target name(s): rtm::rtm
  • pkg-config file name(s): rtm.pc

A simple use case using the CMake file name and the global target:

# ...
find_package(rtm REQUIRED)
# ...
target_link_libraries(YOUR_TARGET rtm::rtm)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the rtm homepage listed above:

#include "rtm/camera_utilsd.h"
#include "rtm/camera_utilsf.h"
#include "rtm/constants.h"
#include "rtm/fwd.h"
#include "rtm/impl/bit_cast.impl.h"
#include "rtm/impl/cmath.impl.h"
#include "rtm/impl/compiler_utils.h"
#include "rtm/impl/detect_arch.h"
#include "rtm/impl/detect_compiler.h"
#include "rtm/impl/detect_cpp_version.h"
#include "rtm/impl/detect_features.h"
#include "rtm/impl/error.h"
#include "rtm/impl/macros.mask4.impl.h"
#include "rtm/impl/macros.matrix.impl.h"
#include "rtm/impl/macros.vector4.impl.h"
#include "rtm/impl/mask_common.h"
#include "rtm/impl/matrix_affine_common.h"
#include "rtm/impl/matrix_cast.h"
#include "rtm/impl/matrix_common.h"
#include "rtm/impl/memory_utils.h"
#include "rtm/impl/quat_common.h"
#include "rtm/impl/qv_common.h"
#include "rtm/impl/qvs_common.h"
#include "rtm/impl/qvv_common.h"
#include "rtm/impl/scalar_common.h"
#include "rtm/impl/type_args.h"
#include "rtm/impl/type_args.neon.impl.h"
#include "rtm/impl/type_args.neon64.impl.h"
#include "rtm/impl/type_args.other.impl.h"
#include "rtm/impl/type_args.vectorcall.impl.h"
#include "rtm/impl/type_args.x64_clang.impl.h"
#include "rtm/impl/type_args.x64_gcc.impl.h"
#include "rtm/impl/vector_common.h"
#include "rtm/macros.h"
#include "rtm/mask4d.h"
#include "rtm/mask4f.h"
#include "rtm/mask4i.h"
#include "rtm/mask4q.h"
#include "rtm/math.h"
#include "rtm/matrix3x3d.h"
#include "rtm/matrix3x3f.h"
#include "rtm/matrix3x4d.h"
#include "rtm/matrix3x4f.h"
#include "rtm/matrix4x4d.h"
#include "rtm/matrix4x4f.h"
#include "rtm/packing/quatd.h"
#include "rtm/packing/quatf.h"
#include "rtm/quatd.h"
#include "rtm/quatf.h"
#include "rtm/qvd.h"
#include "rtm/qvf.h"
#include "rtm/qvsd.h"
#include "rtm/qvsf.h"
#include "rtm/qvvd.h"
#include "rtm/qvvf.h"
#include "rtm/scalard.h"
#include "rtm/scalarf.h"
#include "rtm/type_traits.h"
#include "rtm/types.h"
#include "rtm/vector4d.h"
#include "rtm/vector4f.h"
#include "rtm/version.h"