ILNumerics.Drawing.Platforms 7.4.6

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

ILNumerics Ultimate VS

This package is part of ILNumerics Ultimate VS - a powerful framework for technical application development on .NET.

General info about ILNumerics: (specific info about this package are found at the end)

ILNumerics provides packages for the convenient authoring of:

Compatibility

ILNumerics is compatible with all .NET runtimes since .NET Framework 4.6.1., including .NET Core, .NET 8.0. and newer.

We've invested great effort to auto-translate and keep up to date the quasi standard algorithms for all computational routines, including linear algebra, FFT and optimization methods. These purely managed implementations are the first to bring professional robustness and precision to .NET. Hence, ILNumerics runs efficiently on any platform supported by .NET! Optionally, native libraries can be used to replace the managed default implementation. For the Windows platform, such native, optimized libraries are provided, too.

Performance

ILNumerics apps are typically much faster than alternatives: faster to implement and faster during execution. We've invented groundbreaking new auto-parallelization techniques which make full use of modern, parallel hardware with unseen automatic efficiency. Further, with ILNumerics the size of your data is not limited by the managed heap. ILNumerics n-dimensional Array<T> bridges the gap from high-level mathematical expressions down to native memory robustly, efficiently, and transparently. Moreover, it allows to connect your data to any 3rd party interface without hassle.

Visualization Engine - Interactive 2D/3D Panel Controls for WPF & Windows Forms

Interactive, professional, technical visualizations in 2D and 3D.

This package provides UI controls and classes performing dynamic rendering of ILNumerics Visualization Engine (ILNumerics.Drawing nuget package) scene graphs. The controls perform hardware accelerated, interactive rendering on Windows on .NET Framework, .NET Core and .NET5+ applications and directly support WindowsForms and WPF projects.

For robust distribution on legacy machines and on non-Windows platforms a fully featured software renderer is provided. Mouse eventing (bubbling) and picking is supported as well as the standard mouse interactions: rotation, pan, and zoom. All scenes and sub-parts thereof are designed to be dynamically updatable.

For static visualizations and offscreen rendering on any platform start with ILNumerics.Drawing.

For more / faster / more complex plotting types see the ILNumerics.Toolboxes.Drawing2 package.

In order to write efficient algorithms, use the Computing Engine package. While not strictly required, it is a time and code saver for complex data pre-/post processing tasks.

Quick Start - in Visual Studio (WinForms)

  • Create a new C# Windows Forms application.

  • reference the ILNumerics.Drawing.Platforms package in your project.

  • reference the Computing Engine package in your project.

  • Include the following 'using' directives (C#) on top of your Form1.cs file:

      using ILNumerics;
      using ILNumerics.Drawing;
      using ILNumerics.Drawing.Plotting;
      using static ILNumerics.ILMath;
      using static ILNumerics.Globals; 
    
  • Add the following code to the Form1 class:

      ILNumerics.Drawing.Controls.WinForms.Panel m_panel; 
      protected override void OnLoad(EventArgs e) {
          base.OnLoad(e);
          // create and wire up a new 3D panel: 
          m_panel = new ILNumerics.Drawing.Controls.WinForms.Panel();
          m_panel.Load += panel_Load;
          Controls.Add(m_panel);
          // any size is fine: 
          m_panel.Dock = DockStyle.Fill;
      }
    
      private void panel_Load(object sender, EventArgs e) {
          // simple example data
          Array<float> A = tosingle(ILNumerics.SpecialData.sinc(30, 20));
          // a new 3D surface 
          var surf = new Surface(A, colormap: Colormaps.Copper);
          // add a colorbar
          surf.Add(new Colorbar());
          // add a plot cube and insert the surface
          m_panel.Scene.Add(new PlotCube(twoDMode: false) { surf }); 
      }
    
  • Hit F5, resize or rotate the scene.

  • read the beginners guide for more examples (including WPF setup) and start writing sucessful visualizations!

Documentation

Examples

ILNumerics example collection

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ILNumerics.Drawing.Platforms:

Package Downloads
ILNEditor

Properties editor and plot browser for ILNumerics (http://ilnumerics.net/) scene graphs and plot cubes

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.4.6 431 12/10/2025
7.4.3 200 12/7/2025
7.3.61 236 10/7/2025
7.3.58 319 9/18/2025
7.2.41 572 7/21/2025
7.2.37-beta02 148 7/4/2025
7.2.35 226 6/30/2025
7.2.33-rc03 197 6/17/2025
7.2.33-rc02 192 6/14/2025
7.2.33-rc01 319 6/12/2025
7.1.22 282 1/13/2025
7.1.9 263 12/13/2024
7.0.245-rc03 132 10/11/2024
7.0.230-rc02 149 10/4/2024
7.0.223-rc01 151 9/28/2024
7.0.163 305 7/16/2024
7.0.121 299 4/5/2024
7.0.115 256 4/3/2024
7.0.104 239 3/30/2024
7.0.58-beta01 313 11/1/2022
7.0.54-beta01 281 11/1/2022
6.0.148 1,050 6/1/2022
6.0.127 552 1/7/2022
6.0.124 622 11/16/2021
6.0.120 601 10/28/2021
6.0.115 613 8/26/2021
6.0.111 894 8/24/2021
6.0.86 515 8/18/2021
6.0.78 480 8/15/2021
6.0.69-beta05 358 7/28/2021
6.0.68-beta04 429 7/21/2021
6.0.53-beta03 435 7/12/2021
6.0.48-beta02 633 7/11/2021 6.0.48-beta02 is deprecated because it is no longer maintained and has critical bugs.
6.0.43-beta01 581 7/7/2021 6.0.43-beta01 is deprecated because it is no longer maintained and has critical bugs.