2025-04-15 19:07:31 +00:00
2025-04-16 07:38:58 -04:00
2025-04-15 17:48:33 -04:00
2025-04-16 07:38:58 -04:00
2025-04-15 19:07:31 +00:00

Vec3

Simple header only library defining a 3 dimensional vector type.

Installation

To use from another CMake project you just need to add the following to your CMakeLists.txt:

include(FetchContent)
FetchContent_Declare(Vec3
    GIT_REPOSITORY https://www.alexselimov.com/git/aselimov/Vec3.git
)

FetchContent_GetProperties(Vec3)
if(NOT Vec3_POPULATED)
    FetchContent_Populate(Vec3)
    include_directories(${Vec3_SOURCE_DIR}/include)
endif()
Description
Simple header only template vector type
Readme MIT 84 KiB
Languages
C++ 60.8%
Cuda 25.9%
CMake 13.3%