Emilioso007.NuGet.ProcessingCS 1.0.5

dotnet add package Emilioso007.NuGet.ProcessingCS --version 1.0.5
                    
NuGet\Install-Package Emilioso007.NuGet.ProcessingCS -Version 1.0.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="Emilioso007.NuGet.ProcessingCS" Version="1.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Emilioso007.NuGet.ProcessingCS" Version="1.0.5" />
                    
Directory.Packages.props
<PackageReference Include="Emilioso007.NuGet.ProcessingCS" />
                    
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 Emilioso007.NuGet.ProcessingCS --version 1.0.5
                    
#r "nuget: Emilioso007.NuGet.ProcessingCS, 1.0.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 Emilioso007.NuGet.ProcessingCS@1.0.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=Emilioso007.NuGet.ProcessingCS&version=1.0.5
                    
Install as a Cake Addin
#tool nuget:?package=Emilioso007.NuGet.ProcessingCS&version=1.0.5
                    
Install as a Cake Tool

A Raylib_cs facade to mimic Java Processing syntax

Example usage:

global using System.Numerics;
global using ProcessingCS;
global using static ProcessingCS.PApplet;
global using Raylib_cs;

namespace YourNamespace;

public class Program : PApplet
{
    public static void Main(string[] args)
    {
        var app = new Program();
        app.Run(640, 480, "MyApp");
        //app.RunFullScreen("MyApp");
    }
    
    protected override void Setup()
    {
        SetFramerate(60);
    }

    protected override void Draw()
    {
        Background(42); // It is recommended to clear the background, otherwise artifacts may appear
        
        Fill(255, 0, 0);
        NoStroke();
        Circle(MouseX, MouseY, 50);
    }

    protected override void KeyPressed(KeyboardKey key)
    {
        Console.WriteLine(key + " was pressed!");
    }

    protected override void KeyReleased(KeyboardKey key)
    {
        Console.WriteLine(key + " was released!");
    }

    protected override void MouseClicked(MouseButton mouseButton)
    {
        Console.WriteLine(mouseButton + " was clicked!");
    }

    protected override void MouseDragged(MouseButton mouseButton, Vector2 mouseDelta)
    {
        Console.WriteLine(mouseButton + " was Dragged " + mouseDelta + " !");
    }

    protected override void MouseMoved(Vector2 mouseDelta)
    {
        Console.WriteLine("Mouse was moved " + mouseDelta + " !");
    }

    protected override void MousePressed(MouseButton mouseButton)
    {
        Console.WriteLine(mouseButton + " is pressed!");
    }

    protected override void MouseReleased(MouseButton mouseButton)
    {
        Console.WriteLine(mouseButton + " was released!");
    }

    protected override void MouseWheel(Vector2 mouseWheelMove)
    {
        Console.WriteLine("Mouse wheel: " + mouseWheelMove);
    }
}
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
1.0.5 108 7/12/2025
1.0.4 150 7/9/2025
1.0.3 144 7/8/2025
1.0.2 142 7/8/2025
1.0.1 137 7/8/2025
1.0.0 139 7/8/2025