![]() |
VOOZH | about |
dotnet add package ILNumerics.Toolboxes.Drawing2 --version 7.4.56
NuGet\Install-Package ILNumerics.Toolboxes.Drawing2 -Version 7.4.56
<PackageReference Include="ILNumerics.Toolboxes.Drawing2" Version="7.4.56" />
<PackageVersion Include="ILNumerics.Toolboxes.Drawing2" Version="7.4.56" />Directory.Packages.props
<PackageReference Include="ILNumerics.Toolboxes.Drawing2" />Project file
paket add ILNumerics.Toolboxes.Drawing2 --version 7.4.56
#r "nuget: ILNumerics.Toolboxes.Drawing2, 7.4.56"
#:package ILNumerics.Toolboxes.Drawing2@7.4.56
#addin nuget:?package=ILNumerics.Toolboxes.Drawing2&version=7.4.56Install as a Cake Addin
#tool nuget:?package=ILNumerics.Toolboxes.Drawing2&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.
This package implements extensions to the Visualization Engine. It adds more plot types, faster surfaces and more high-level features (as smooth surfaces) to your visualizations. The types in this modules can be used for general visualizations and plots as well as for interactive apps, based on WPF or WindowsForms (see: ILNumerics.Drawing.Platforms).
reference the Drawing2 package in your project.
start with a new console application (C#)
include the following code into your Program.Main() method (C#). It creates random data, a new scene, use the data to add a new FillArea plot and renders the plot to a bitmap image (offscreen rendering).
static void Main(string[] args) {
// create a new scene, with a bar plot of random data
var scene = new Scene();
// create some data
Array<double> A = arange<double>(1, 10).T.Concat(rand(1, 10), 0);
// create a fill area plot
var plot = new FillArea(A, fillColor: System.Drawing.Color.LightGray);
// add the plot to the scene
scene.Add(new PlotCube(twoDMode: false) { plot });
// add-on: access the line inside the plot and configure its width.
// Lines in ILNumerics.Drawing are mostly Lines objects - capable for rendering many lines efficiently.
var lineplot = plot.First<Lines>();
lineplot.Width = 3;
lineplot.DashStyle = DashStyle.Dotted;
// signal that your scene is ready for rendering
scene.Configure();
// (offscreen) render the scene to a bitmap, using GDIDriver
var gdi = new GDIDriver(1000, 1000, scene);
gdi.Render();
gdi.BackBuffer.SaveBitmap("image.png");
}
Hit F5 and find the result in your /bin/Debug/ folder: image.png
Read the beginners guide and start implementing your scene!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. 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. |
| .NET Core | netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 netstandard2.1 is compatible. |
| .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. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 3 NuGet packages that depend on ILNumerics.Toolboxes.Drawing2:
| Package | Downloads |
|---|---|
|
ILNumerics.Community.WebExport
Export functionality for ILNumerics (http://ilnumerics.net/) scene graphs and plot cubes to Plotly (interactive data visualization package) |
|
|
ILNumerics.Community.MAUI
Integration package for ILNumerics (http://ilnumerics.net/) scene graphs and plot cubes with .NET Multi-platform App UI (https://dotnet.microsoft.com/apps/maui) framework. |
|
|
ILNumerics.Community.TikzExport
Export functionality for ILNumerics (http://ilnumerics.net/) scene graphs and plot cubes to Tikz/PGFPlots (LaTeX graphics package) |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.4.56 | 96 | 6/8/2026 |
| 7.4.41 | 132 | 5/22/2026 |
| 7.4.40 | 135 | 4/25/2026 |
| 7.4.38 | 124 | 4/24/2026 |
| 7.4.16 | 245 | 1/13/2026 |
| 7.4.6 | 525 | 12/10/2025 |
| 7.4.3 | 290 | 12/7/2025 |
| 7.3.61 | 295 | 10/7/2025 |
| 7.3.58 | 445 | 9/18/2025 |
| 7.2.41 | 672 | 7/21/2025 |
| 7.2.37-beta02 | 196 | 7/4/2025 |
| 7.2.35 | 302 | 6/30/2025 |
| 7.2.33-rc03 | 217 | 6/17/2025 |
| 7.2.33-rc02 | 244 | 6/14/2025 |
| 7.2.33-rc01 | 366 | 6/12/2025 |
| 7.1.22 | 329 | 1/13/2025 |
| 7.1.9 | 331 | 12/13/2024 |
| 7.0.245-rc03 | 189 | 10/11/2024 |
| 7.0.230-rc02 | 184 | 10/4/2024 |
See the changelog: https://ilnumerics.net/changelog.html