├── .github ├── FxPT.png ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md └── Types ├── Tests ├── FixedNumberTests.cs └── FixedTypes.Tests.csproj ├── Types.sln └── Types ├── Fixed32.cs └── FixedTypes.csproj /.github/FxPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/.github/FxPT.png -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/README.md -------------------------------------------------------------------------------- /Types/Tests/FixedNumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/Types/Tests/FixedNumberTests.cs -------------------------------------------------------------------------------- /Types/Tests/FixedTypes.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/Types/Tests/FixedTypes.Tests.csproj -------------------------------------------------------------------------------- /Types/Types.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/Types/Types.sln -------------------------------------------------------------------------------- /Types/Types/Fixed32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/Types/Types/Fixed32.cs -------------------------------------------------------------------------------- /Types/Types/FixedTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stormmuller/fixed-point-types/HEAD/Types/Types/FixedTypes.csproj --------------------------------------------------------------------------------