![]() |
VOOZH | about |
dotnet add package SimpleGraphicsLib --version 1.0.3.5
NuGet\Install-Package SimpleGraphicsLib -Version 1.0.3.5
<PackageReference Include="SimpleGraphicsLib" Version="1.0.3.5" />
<PackageVersion Include="SimpleGraphicsLib" Version="1.0.3.5" />Directory.Packages.props
<PackageReference Include="SimpleGraphicsLib" />Project file
paket add SimpleGraphicsLib --version 1.0.3.5
#r "nuget: SimpleGraphicsLib, 1.0.3.5"
#:package SimpleGraphicsLib@1.0.3.5
#addin nuget:?package=SimpleGraphicsLib&version=1.0.3.5Install as a Cake Addin
#tool nuget:?package=SimpleGraphicsLib&version=1.0.3.5Install as a Cake Tool
This library is intended for small simple tests, such as visualising perlin noise.
To create the renderer, create an instance of the GraphicsHandler, which can take the render action, screen dimensions, an action for outputting logs, and flags.
The most important part is the render action, which is what is constantly ran on the thread that is created. This program will create a window for 5 seconds and then it will close
using (renderer = new GraphicsHandler(
render: Render,
flags: [RendererFlag.OutputToTerminal, RendererFlag.HalfSizedWindow]))
{
Console.WriteLine("Testing");
Thread.Sleep(5000);
Console.WriteLine("Terminating");
}
For an example render function, this is one to create a rainbow pattern.
static int w = 32;
static int h = 32;
static readonly long start = DateTimeOffset.Now.ToUnixTimeMilliseconds();
static float offset = 2 * MathF.PI / 3f;
private static void Render()
{
int xTiles = renderer.screenwidth / w;
int yTiles = 1 + renderer.screenheight / h;
for (int x = 0; x < xTiles; x++)
{
for (int y = 0; y < yTiles; y++)
{
float timeOffset = ((DateTimeOffset.Now.ToUnixTimeMilliseconds() - start) / 100f) ;
float number = (x + y) * 2 * MathF.PI / (yTiles + xTiles);
byte r = (byte)((MathF.Cos(timeOffset + number) + 1) * (255f / 2));
byte g = (byte)((MathF.Cos(timeOffset + number + offset) + 1) * (255f / 2));
byte b = (byte)((MathF.Cos(timeOffset + number + 2 * offset) + 1) * (255f / 2));
renderer.SetPixel(x * w, y * h, w, h, r, g, b);
}
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 1.0.3.5 | 120 | 2/22/2026 | |
| 1.0.3.4 | 118 | 2/22/2026 | 1.0.3.4 is deprecated because it has critical bugs. |
| 1.0.3.3 | 125 | 1/4/2026 | |
| 1.0.3.2 | 147 | 1/2/2026 | |
| 1.0.3.1 | 134 | 1/2/2026 | 1.0.3.1 is deprecated because it has critical bugs. |
| 1.0.3 | 138 | 1/2/2026 | 1.0.3 is deprecated because it has critical bugs. |
| 1.0.2 | 134 | 1/2/2026 | 1.0.2 is deprecated because it has critical bugs. |
| 1.0.1 | 141 | 1/2/2026 | 1.0.1 is deprecated because it has critical bugs. |
| 1.0.0 | 145 | 1/2/2026 | 1.0.0 is deprecated because it has critical bugs. |