NurbsSharp 0.3.0

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

NURBS Sharp

NuGet Version Build Status

NURBS Sharp is a small, dependency-free NURBS (Non-Uniform Rational B-Spline) library for .NET. It provides data structures, evaluators, topology operators, I/O and tessellation utilities implemented using only the .NET standard library.

Japanese Readme

<img width="800" height="800" alt="test" src="https://github.com/user-attachments/assets/b92a4e5e-70df-49f0-bcd7-7ba1030fb881" />

Table of Contents

Features

  • Generation and evaluation of NURBS curves, surfaces
  • Topology operators: degree elevation/reduction, knot insertion/removal/refinement, join/split
  • Generation capabilities: interpolation, least squares approximation, primitive shapes
  • Intersection calculations: Ray-Box, Ray-Mesh, Curve-Curve, Curve-Surface, Surface-Surface, Surface-Plane
  • IO helpers:
    • Mesh only: OBJ/STL export, simple BMP export
    • NURBS only: IGES import/export (Point, Curve, Surface entities supported)
  • Tessellation utilities for curves and surfaces
  • Targets: .NET 8 and .NET Standard 2.1

Limitations

  • Viewer: This library does not include a 3D model viewer. To inspect model details, a 3D rendering library or file export is required.
  • NURBS Surface: TrimSurface is not yet implemented.
  • Knot Vector: Currently, only "Clamped" knot vectors are supported (multiplicity = degree + 1).
  • IGES Support:
    • Import: Only supports Entity Type 126 (Rational B-spline curve), and 128 (Rational B-spline surface).
    • Export: Only supports Point and NURBS entities. Mesh export is not supported.
  • Mesh Export (OBJ/STL): Only supports Mesh objects. Direct export from NURBS is not supported (tessellation required).
  • Intersection Calculations:
    • The current state may be unstable due to its dependence on initial conditions.

Installation

Install via NuGet:

dotnet add package NurbsSharp

Or add the package reference to your project file.

Quick Start

Basic usage (C#):

using NurbsSharp.Core;
using NurbsSharp.Geometry;
using NurbsSharp.Tesselation;
using NurbsSharp.IO;

// Create a NURBS surface and evaluate a point
int degreeU = 3, degreeV = 3;
var knotsU = new double[] {0,0,0,0,1,1,1,1};
var knotsV = new double[] {0,0,0,0,1,1,1,1};
var kvU = new KnotVector(knotsU);
var kvV = new KnotVector(knotsV);

// Build control points (u x v grid)
ControlPoint[][] controlPoints = new ControlPoint[4][];
controlPoints[0] = new ControlPoint[] {
    new ControlPoint(0.0, 0.0, 0.0, 1),
    new ControlPoint(1.0, 0.0, 1.0, 1),
    new ControlPoint(2.0, 0.0, 3.0, 1),
    new ControlPoint(3.0, 0.0, 3.0, 1)
};
// ... Create Control Points ...

var surface = new NurbsSurface(degreeU, degreeV, kvU, kvV, controlPoints);
var point = surface.GetPos(0.5, 0.5);
Console.WriteLine(point);

Examples

tessellate a surface and export to STL:

int divideN = 20;
var mesh = SurfaceTessellator.Tessellate(surface, divideN, divideN);
using (var fs = new FileStream("test_output.stl", FileMode.Create, FileAccess.Write))
{
    await STLExporter.ExportAsync(mesh, fs);
}

Examples Project: https://github.com/nyarurato/NurbsSharpSample
Github Wiki: https://github.com/nyarurato/NurbsSharp/wiki/Samples

Documentation

API Docs: https://nyarurato.github.io/NurbsSharp/

Development

Clone the repo and build locally:

dotnet restore
dotnet build -c Debug

Run unit tests:

dotnet test -c Debug

Project layout highlights:

  • src/Core — numeric helpers and core types (BoundingBox, Ray, KnotVector, LinAlg, etc.)
  • src/GeometryNurbsCurve, NurbsSurface, NurbsVolume, Mesh, etc.
  • src/Evaluation — evaluators (curve/surface/volume)
  • src/Operation — topology operators (degree, knot, join, split, surface operators)
  • src/Generation — interpolation, least squares approximation, primitive shape generation
  • src/Intersection — intersection calculations (Ray-Box, Ray-Mesh, Curve-Curve, Curve-Surface, BVH structures)
  • src/IOOBJExporter, STLExporter, BMPExporter, IGES import/export
  • src/Tesselation — tessellation (curve/surface)

Contributing

Contributions are welcome. Typical workflow:

  1. Fork the repository
  2. Create a branch with a descriptive name
  3. Add tests for new behavior where appropriate
  4. Open a pull request against master

License

MIT License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.
  • net8.0

    • No dependencies.

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
0.3.0 124 12/12/2025
0.2.0 484 12/1/2025
0.1.1 186 11/25/2025
0.1.0 342 11/21/2025
0.0.1-beta5 390 11/19/2025
0.0.1-beta4 384 11/18/2025
0.0.1-beta3 295 11/17/2025
0.0.1-beta2 245 11/14/2025
0.0.1-beta 261 11/14/2025