Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pent0/frsml
A small math library in SSE4 and upper written in C++
https://github.com/pent0/frsml
cmake cpp17 math-library ser sse41 upper
Last synced: 20 days ago
JSON representation
A small math library in SSE4 and upper written in C++
- Host: GitHub
- URL: https://github.com/pent0/frsml
- Owner: pent0
- License: mit
- Created: 2017-02-12T05:32:39.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-08T16:17:08.000Z (almost 7 years ago)
- Last Synced: 2024-10-15T23:34:55.045Z (2 months ago)
- Topics: cmake, cpp17, math-library, ser, sse41, upper
- Language: C++
- Homepage:
- Size: 741 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# FRSML 3.0
A small linear math library using SSE4.
## What is FRSML
- FRSML (FranceSnack Math Library) is a project which targets Vulkan developers
- The library does some linear math, and contains basic class for linear math like vec3,mat4,quat with fast optimizations.
- Works cross-platform## Build project:
+ Windows: Using solutions provied
+ Unix: Clone and build the project using CMake and your favorite compiler.
## Using the library
- Now you can compile the library dynamiclly or static.
* Compiler will produce two libraries: Once implements specific optimization, once is wrapper
* For example: if you choose FRSML_SSE and dynamiclly build, compiler will produce *frsml_sse.dll* and *frsml.dll*
* But you only have to link frsml.dll to use in your project (frsml_sse is depency)- Please include the headers in the include/frsml folder