Example #1
0
 /// <summary>Load a binary STL file.</summary>
 /// <seealso href="https://en.wikipedia.org/wiki/STL_%28file_format%29" />
 public static IndexedMesh loadStl(this IRenderDevice device, Stream stream, float?minCosAngle, string name = null)
 {
     return(MeshLoader.loadStl(device, stream, minCosAngle, name));
 }