![]() |
VOOZH | about |
dotnet add package ILNumerics.Drawing.Platforms --version 7.4.56
NuGet\Install-Package ILNumerics.Drawing.Platforms -Version 7.4.56
<PackageReference Include="ILNumerics.Drawing.Platforms" Version="7.4.56" />
<PackageVersion Include="ILNumerics.Drawing.Platforms" Version="7.4.56" />Directory.Packages.props
<PackageReference Include="ILNumerics.Drawing.Platforms" />Project file
paket add ILNumerics.Drawing.Platforms --version 7.4.56
#r "nuget: ILNumerics.Drawing.Platforms, 7.4.56"
#:package ILNumerics.Drawing.Platforms@7.4.56
#addin nuget:?package=ILNumerics.Drawing.Platforms&version=7.4.56Install as a Cake Addin
#tool nuget:?package=ILNumerics.Drawing.Platforms&version=7.4.56Install as a Cake Tool
This package is part of ILNumerics Ultimate VS - a comprehensive, powerful platform for high-performance technical application development on .NET.
ILNumerics centers around ILNumerics.ONAL - the free and open-source core language of the ILNumerics ecosystem. It provides all fundamental numerical language features in a common, stable, deployable and maintainable implementation.
ILNumerics.Computing extends the open-source ILNumerics.ONAL language core into a commercial-grade foundation for professional .NET applications, visualization extensions, domain-specific toolboxes, deployment, and no-effort auto-optimization.
Start with ILNumerics.ONAL to write and validate your algorithms in the free and open-source core language; the same algorithms can then be executed, extended, and further developed with ILNumerics.Computing without changing the mathematical source code.
New to ILNumerics? Start here:
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.
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.
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.
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!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0-windows7.0 net8.0-windows7.0 is compatible. net9.0-windows net9.0-windows was computed. net10.0-windows net10.0-windows was computed. |
| .NET Framework | net461 net461 is compatible. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
Showing the top 2 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 |
|
|
ILNumerics.Community.SceneEditor.WinForms
Properties editor for ILNumerics (http://ilnumerics.net/) scene graphs and plot cubes. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.4.56 | 184 | 6/8/2026 |
| 7.4.41 | 186 | 5/22/2026 |
| 7.4.40 | 145 | 4/25/2026 |
| 7.4.38 | 112 | 4/24/2026 |
| 7.4.16 | 208 | 1/13/2026 |
| 7.4.6 | 534 | 12/10/2025 |
| 7.4.3 | 293 | 12/7/2025 |
| 7.3.61 | 326 | 10/7/2025 |
| 7.3.58 | 403 | 9/18/2025 |
| 7.2.41 | 668 | 7/21/2025 |
| 7.2.37-beta02 | 207 | 7/4/2025 |
| 7.2.35 | 318 | 6/30/2025 |
| 7.2.33-rc03 | 240 | 6/17/2025 |
| 7.2.33-rc02 | 237 | 6/14/2025 |
| 7.2.33-rc01 | 370 | 6/12/2025 |
| 7.1.22 | 367 | 1/13/2025 |
| 7.1.9 | 351 | 12/13/2024 |
| 7.0.245-rc03 | 191 | 10/11/2024 |
| 7.0.230-rc02 | 198 | 10/4/2024 |
See the changelog: https://ilnumerics.net/changelog.html