Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 |