Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rambalac/fastmath.net
Simple C# library for Fixed Point arithmetics based on int.
https://github.com/rambalac/fastmath.net
Last synced: about 1 month ago
JSON representation
Simple C# library for Fixed Point arithmetics based on int.
- Host: GitHub
- URL: https://github.com/rambalac/fastmath.net
- Owner: Rambalac
- License: gpl-2.0
- Created: 2015-03-02T03:04:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-25T06:54:08.000Z (over 9 years ago)
- Last Synced: 2024-05-01T20:47:03.812Z (7 months ago)
- Language: C#
- Size: 152 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
FastMath.Net
========Fast Math is simple C# library for Fixed Point arithmetics based on int.
But seems to be it's much easier to use just float or even double than do anything special.
For 100000000 calculations.| Type | Time |
|--------|------|
| double | 54ms |
| float | 56ms |
| int | 43ms |
| Fast24 | 72ms |