VOOZH about

URL: https://www.nuget.org/packages/SimpleGraphicsLib/

⇱ NuGet Gallery | SimpleGraphicsLib 1.0.3.5




SimpleGraphicsLib 1.0.3.5

dotnet add package SimpleGraphicsLib --version 1.0.3.5
 
 
NuGet\Install-Package SimpleGraphicsLib -Version 1.0.3.5
 
 
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="SimpleGraphicsLib" Version="1.0.3.5" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SimpleGraphicsLib" Version="1.0.3.5" />
 
Directory.Packages.props
<PackageReference Include="SimpleGraphicsLib" />
 
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 SimpleGraphicsLib --version 1.0.3.5
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SimpleGraphicsLib, 1.0.3.5"
 
 
#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 SimpleGraphicsLib@1.0.3.5
 
 
#: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=SimpleGraphicsLib&version=1.0.3.5
 
Install as a Cake Addin
#tool nuget:?package=SimpleGraphicsLib&version=1.0.3.5
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

SimpleGraphicsLibrary

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. 
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.