{"id":15047705,"url":"https://github.com/ediu3095/transform","last_synced_at":"2025-03-13T21:42:11.590Z","repository":{"id":252267747,"uuid":"825885083","full_name":"Ediu3095/transform","owner":"Ediu3095","description":"Transform is a header only C++ mathematics library for graphics software based on GLM and Real-Time Rendering.","archived":false,"fork":false,"pushed_at":"2024-08-17T12:33:31.000Z","size":250,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-20T17:17:20.142Z","etag":null,"topics":["cpp","cpp-library","cpp20","header-only","mathematics","matrix","opengl","quaternion","vector","vulkan"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ediu3095.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-08T17:32:46.000Z","updated_at":"2024-08-15T14:16:22.000Z","dependencies_parsed_at":"2024-08-15T13:38:43.707Z","dependency_job_id":null,"html_url":"https://github.com/Ediu3095/transform","commit_stats":null,"previous_names":["ediu3095/transform"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ediu3095%2Ftransform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ediu3095%2Ftransform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ediu3095%2Ftransform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ediu3095%2Ftransform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ediu3095","download_url":"https://codeload.github.com/Ediu3095/transform/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243489778,"owners_count":20298997,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","cpp-library","cpp20","header-only","mathematics","matrix","opengl","quaternion","vector","vulkan"],"created_at":"2024-09-24T21:03:20.097Z","updated_at":"2025-03-13T21:42:11.564Z","avatar_url":"https://github.com/Ediu3095.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Transform\n\n[Transform](https://github.com/Ediu3095/transform) is a header only C++ mathematics library for graphics software based on [GLM](https://github.com/g-truc/glm) and [Real-Time Rendering](https://www.realtimerendering.com/).\n\n*Transform* provides classes and functions to operate on vectors and matrices so that anyone who has read *Real-Time Rendering* can apply the concepts explained in the book to their code.\n\nThis project is written in C++20. It is a platform independent library supporting the following compilers:\n\n- [Clang](https://llvm.org/) 14.0 and higher\n- [GCC](https://gcc.gnu.org/) 11.4 and higher\n- [MSVC](https://visualstudio.microsoft.com/) 2022 and higher\n\n## Project Health\n\n![Clang](https://github.com/Ediu3095/transform/actions/workflows/clang.yml/badge.svg) ![GCC](https://github.com/Ediu3095/transform/actions/workflows/gcc.yml/badge.svg) ![MSVC](https://github.com/Ediu3095/transform/actions/workflows/msvc.yml/badge.svg)\n\n## CMake using git submodule\n\nYou can add *Transform* to your CMake project to be built together. Add the project as a submodule with:\n\n```bash\ngit submodule add -- https://github.com/Ediu3095/transform.git path/to/transform\n```\n\nThen compile it along with the rest of your project by adding the following to your `CMakeLists.txt`:\n\n```cmake\nadd_subdirectory(path/to/transform)\ntarget_link_libraries(main PRIVATE transform::transform)\n```\n\n## CMake using FetchContent\n\nIf your project is not a git repository, another way to add *Transform* so that they are both compiled together is by using `FetchContent`. Add the following to your `CMakeLists.txt`:\n\n```cmake\ncmake_minimum_required(VERSION 3.11) # FetchContent is new in version 3.11.\n\ninclude(FetchContent)\n\nFetchContent_Declare(\n\ttransform\n\tGIT_REPOSITORY\thttps://github.com/Ediu3095/transform.git\n\tGIT_TAG \tb0c625e2c9793070d3bac9adff54e7544e73252d\n)\n\nFetchContent_MakeAvailable(transform)\n\ntarget_link_libraries(main PRIVATE transform::transform)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fediu3095%2Ftransform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fediu3095%2Ftransform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fediu3095%2Ftransform/lists"}