SpiralLab.Sirius3.UI
0.8.0
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Framework 4.8.1
This package targets .NET Framework 4.8.1. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package SpiralLab.Sirius3.UI --version 0.8.0
NuGet\Install-Package SpiralLab.Sirius3.UI -Version 0.8.0
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="SpiralLab.Sirius3.UI" Version="0.8.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SpiralLab.Sirius3.UI" Version="0.8.0" />
<PackageReference Include="SpiralLab.Sirius3.UI" />
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 SpiralLab.Sirius3.UI --version 0.8.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SpiralLab.Sirius3.UI, 0.8.0"
#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 SpiralLab.Sirius3.UI@0.8.0
#: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=SpiralLab.Sirius3.UI&version=0.8.0
#tool nuget:?package=SpiralLab.Sirius3.UI&version=0.8.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Sirius3
A .NET-based, all-in-one platform for precision laser processing and additive manufacturing.
Highlights
- SCANLAB RTC Controllers
- RTC4 / RTC4e / RTC5 / RTC6 / RTC6e
- XL-SCAN (RTC6 + ACS via syncAXIS)
- Measurement and Profiling
- Log scanner trajectory and output signals with plotted graphs
- Powerful Marking Options
- MoF (Marking on the Fly), 2nd head, 3D
- Sky Writing Mode 1/2/3 and 4
- Ramp (Automatic Laser Control)
– Position dependent
- Velocity(set or actual) dependent
- Encoder speed dependent
- Scanner Field Correction
- 2D / 3D correction
- Laser Power Control
- Frequency, Duty Cycle, Analog, Digital
- Built-in vendor integrations: AdvancedOptoWave, Coherent, IPG, JPT, Photonics Industry, Spectra Physics and more
- Powermeters & Powermap
- Coherent (PowerMax), Thorlabs (via OPM), Ophir (via StarLab)
- Powermap-based output compensation
- Various Entities and Formats
- Point(s), Line, Arc, Polyline, Triangle, Rectangle, Spiral, Trepan, Spline
- Layer, Group, Block and BlockInsert
- Text, SiriusText, ImageText, Circular Text
- Image, DXF, HPGL, ZPL
- QR, DataMatrix, PDF417 Barcodes
- 3D Mesh Format like as STL, OBJ, PLY
- Open Architecture
- Editor and laser-source control code are open for customization
Major Changes
- Faster rendering with updated shader engine
- 3D-printer features: slicer integration and contour extraction
- Multiple hatch patterns with path optimizer
- Scanner, layer pen property system
- Various rendering modes (per-vertex, Z-depth, etc.)
- Multi-page documents
- Built-in wafer, substrate editor
- Switchable camera: orthographic / perspective
Packages / DLLs
SpiralLab.Sirius3.Dependencies— SCANLAB RTC4/5/6, syncAXIS runtime, fonts, sample dataSpiralLab.Sirius3— HAL controllers (scanner/laser/powermeter, etc.)SpiralLab.Sirius3.UI— Entities, 3D renderer, WinForms UI controls
Easy to update library files by NuGet package manager.
Platform targets
net481net8.0-windows
System Requirements
- Windows 10/11 (x64)
- GPU/Driver with OpenGL 3.3 support (latest drivers strongly recommended)
- SCANLAB drivers/runtimes installed (see versions below)
Dependencies
SCANLAB
- RTC4: v2023.11.02
- RTC5: v2024.09.27
- RTC6: 2025.10.30 v1.22.1
- syncAXIS: v1.8.2 (2023.03.09)
.NET / OpenTK
net481- OpenTK 3.3.3
net8.0-windows- OpenTK 4.9.4
- OpenTK.Mathematics 4.9.4
- Common
- Newtonsoft.Json 13.0.4
- Microsoft.Extensions.Logging 8.0.1
- Microsoft.Extensions.Logging.Abstractions 8.0.3
Getting Started
Add references (From NuGet package manager)
SpiralLab.Sirius3.Dependencies(https://www.nuget.org/packages/SpiralLab.Sirius3.Dependencies)SpiralLab.Sirius3(https://www.nuget.org/packages/SpiralLab.Sirius3)SpiralLab.Sirius3.UI(https://www.nuget.org/packages/SpiralLab.Sirius3.UI)
Create your devices like as scanner, laser, powermeter, marker, ... and attach them to SiriusEditorControl.
Examples: https://github.com/labspiral/sirius3
Quick Start
#if NETFRAMEWORK
#define OPENTK3
#elif NET8_0_OR_GREATER
#define OPENTK4
#endif
#if OPENTK3
using OpenTK;
using DVec2 = OpenTK.Vector2d;
using DVec3 = OpenTK.Vector3d;
using DMat4 = OpenTK.Matrix4d;
#elif OPENTK4
using OpenTK.Mathematics;
using DVec2 = OpenTK.Mathematics.Vector2d;
using DVec3 = OpenTK.Mathematics.Vector3d;
using DMat4 = OpenTK.Mathematics.Matrix4d;
#endif
public class MainForm : Form
{
private readonly SiriusEditorControl editor = new SiriusEditorControl();
public MainForm()
{
editor.Dock = DockStyle.Fill;
Controls.Add(editor);
Load += (s, e) =>
{
// 1. Create devices
var scanner = //new Rtc4, Rtc5 or Rtc6(...)
scanner.Initialize();
var laser = //new LaserVirtual(...)
laser.Initialize();
var powerMeter = //new PowerMeterVirtual(...)
powerMeter.Initialize();
var marker = //new MarkerRtc(...)
marker.Initialize();
// 2. Assign into SiriusEditorControl
editor.Scanner = scanner;
editor.Laser = laser;
editor.PowerMeter = powerMeter;
editor.Marker = marker;
// 3. Ready marker
marker.Ready(editor.Document, editor.View, scanner, laser, powerMeter);
// 4. Create entities
var line = EntityFactory.CreateLine(new DVec3(0, 0, 0), new DVec3(10, 10, 0));
editor.Document.Add(line);
var text = new EntityFactory.CreateText("Arial", FontStyle.Regular, "SIRIUS3", 10);
editor.Document.Add(text);
// 5. Do laser processing
marker.Start();
};
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new MainForm());
}
}
License
- Commercial license required for production use.
- Contact: hcchoi@spirallab.co.kr | https://spirallab.co.kr
- See LICENSE.txt and THIRD-PARTY-NOTICES.txt.
Without a license key, the library runs in 30-minute evaluation mode.
Version history
- 2025.11.14 v0.8.0
- Developer preview version
| Product | Versions 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 | net481 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8.1
- Clipper2 (>= 1.5.4)
- Microsoft.CodeAnalysis.CSharp (>= 4.9.2)
- Microsoft.CodeAnalysis.Scripting (>= 4.9.2)
- Microsoft.Extensions.Logging (>= 8.0.1)
- netDxf (>= 2023.11.10)
- Newtonsoft.Json (>= 13.0.4)
- OpenTK (>= 3.3.3)
- OpenTK.GLControl (>= 3.3.3)
- OpenTK.GLWpfControl (>= 3.3.0)
- SpiralLab.Sirius3 (>= 0.8.0)
- StbImageSharp (>= 2.30.15)
- System.IO.Compression (>= 4.3.0)
- System.IO.Packaging (>= 9.0.10)
- ZXing.Net (>= 0.16.10)
-
net8.0-windows7.0
- Clipper2 (>= 1.5.4)
- Microsoft.CodeAnalysis.CSharp (>= 4.9.2)
- Microsoft.CodeAnalysis.CSharp.Scripting (>= 4.9.2)
- Microsoft.CodeAnalysis.Scripting (>= 4.9.2)
- Microsoft.Extensions.Logging (>= 8.0.1)
- netDxf (>= 2023.11.10)
- Newtonsoft.Json (>= 13.0.4)
- OpenTK (>= 4.9.4)
- OpenTK.GLControl (>= 4.0.2)
- OpenTK.GLWpfControl (>= 4.3.3)
- OpenTK.Mathematics (>= 4.9.4)
- SpiralLab.Sirius3 (>= 0.8.0)
- StbImageSharp (>= 2.30.15)
- System.Collections.Immutable (>= 8.0.0)
- System.IO.Compression (>= 4.3.0)
- System.IO.Packaging (>= 9.0.10)
- System.Reflection.Metadata (>= 8.0.0)
- WinForms.DataVisualization (>= 1.10.0)
- ZXing.Net (>= 0.16.10)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.