Egodystonic.TinyFFR.WinForms 0.8.1

dotnet add package Egodystonic.TinyFFR.WinForms --version 0.8.1
                    
NuGet\Install-Package Egodystonic.TinyFFR.WinForms -Version 0.8.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Egodystonic.TinyFFR.WinForms" Version="0.8.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Egodystonic.TinyFFR.WinForms" Version="0.8.1" />
                    
Directory.Packages.props
<PackageReference Include="Egodystonic.TinyFFR.WinForms" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Egodystonic.TinyFFR.WinForms --version 0.8.1
                    
#r "nuget: Egodystonic.TinyFFR.WinForms, 0.8.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Egodystonic.TinyFFR.WinForms@0.8.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Egodystonic.TinyFFR.WinForms&version=0.8.1
                    
Install as a Cake Addin
#tool nuget:?package=Egodystonic.TinyFFR.WinForms&version=0.8.1
                    
Install as a Cake Tool

TinyFFR

A Tiny Fixed Function Rendering library for C#/.NET 9+.

  • Delivered via NuGet
  • Supports Windows, MacOS (Apple Silicon only), Linux (Debian/Ubuntu)
  • Standalone or integrated with WPF, Avalonia, Winforms
  • Free for commercial and non-commercial use (see license)
  • Physically-based rendering (via filament)
  • Asset loading (via assimp and stb_image)
  • Window management and input handling (via SDL)
  • Fully-abstracted math & geometry API - no pre-existing 3D or linear algebra knowledge required
  • Zero-GC design

Manual

Manual is available at tinyffr.dev.

Repository / Discussion

For full source code and/or to report issues and ask questions, please visit TinyFFR's Github.

Hello Cube

// Tutorial: https://tinyffr.dev/tutorials/hello_cube/

using Egodystonic.TinyFFR;
using Egodystonic.TinyFFR.Factory.Local;
using Egodystonic.TinyFFR.Environment.Input;

using var factory = new LocalTinyFfrFactory();
using var cubeMesh = factory.MeshBuilder.CreateMesh(Cuboid.UnitCube);
using var cubeMaterial = factory.MaterialBuilder.CreateTestMaterial();
using var cube = factory.ObjectBuilder.CreateModelInstance(cubeMesh, cubeMaterial, initialPosition: (0f, 0f, 1.5f));
using var light = factory.LightBuilder.CreatePointLight(Location.Origin);
using var scene = factory.SceneBuilder.CreateScene();
scene.Add(cube);
scene.Add(light);
using var window = factory.WindowBuilder.CreateWindow(factory.DisplayDiscoverer.Primary!.Value);
using var camera = factory.CameraBuilder.CreateCamera(initialPosition: Location.Origin, initialViewDirection: Direction.Forward);
using var renderer = factory.RendererBuilder.CreateRenderer(scene, camera, window);
using var loop = factory.ApplicationLoopBuilder.CreateLoop(60);
while (!loop.Input.UserQuitRequested) {
    var deltaTime = loop.IterateOnce().AsDeltaTime();
    if (loop.Input.KeyboardAndMouse.KeyIsCurrentlyDown(KeyboardOrMouseKey.Space)) cube.RotateBy(90f % Direction.Down * deltaTime);
    renderer.Render();
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.1 128 5/10/2026
0.8.0 104 5/5/2026
0.7.0 130 3/23/2026
0.6.0 133 12/29/2025
0.5.0 304 11/10/2025
0.5.0-rc002 162 11/9/2025
0.5.0-rc001 208 11/6/2025
0.4.0 208 10/13/2025