A portable .NET library for reading and writing STL files. Clone and build locally or directly consume the NuGet package.
Open an STL file:
using System.IO;
using IxMilia.Stl;
// ...
StlFile stlFile;
using (FileStream fs = new FileStream(@"C:\Path\To\File.stl", FileMode.Open))
{
stlFile = StlFile.Load(fs);
}
// if on >= NETStandard1.3 you can use:
// StlFile stlFile = StlFile.Load(@"C:\Path\To\File.stl");
// Now check the `stlFile.SolidName` and `stlFile.Triangles` properties.
Save an STL file:
using System.IO;
using IxMilia.Stl;
// ...
StlFile stlFile = new StlFile();
stlFile.SolidName = "my-solid";
stlFile.Triangles.Add(new StlTriangle(new StlNormal(1, 0, 0), new StlVertex(0, 0, 0), new StlVertex(1, 0, 0), new StlVertex(1, 1, 0)));
// ...
using (FileStream fs = new FileStream(@"C:\Path\To\File.stl", FileMode.Open))
{
stlFile.Save(fs);
}
// if on >= NETStandard1.3 you can use:
// stlFile.Save(@"C:\Path\To\File.stl");
To build locally, install the latest .NET Core 3.0 SDK.