HTML JPG PDF XML GLB
Aspose.3D  for .NET
GLB

GLB File Viewer for .NET

Render GLB files without any 3D modeling and rendering software.

How to View GLB File Using C#

In order to view GLB file, we’ll use

Aspose.3D for .NET

API which is a feature-rich, powerful and easy to use API for C# platform to be used with any Viewer. Open

NuGet

package manager, search for Aspose.3D and install. You may also use the following command from the Package Manager Console.

Package Manager Console Command


PM> Install-Package Aspose.3D

Steps to View GLB via C#

Aspose.3D makes it easy for the developers to view the GLB file with just few lines of code.

  1. Load GLB file via the constructor of Scene class
  2. Create an instance of Html5SaveOptions
  3. Set properties for advanced formatting
  4. Call the Scene.Save method with object of Html5SaveOptions
  5. Check resultant HTML file in default browser

System Requirements

Aspose.3D for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.

  • Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Mono
  • Development environment like Microsoft Visual Studio
  • Aspose.3D for .NET referenced in your project
 

C# code to view GLB


string output = System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() + ".html";

// load GLB scene via an instance of Scene
var scene = new ThreeD.Scene("template.glb");
// create an object of Html5SaveOptions and set properties for formatting
var options = new ThreeD.Formats.Html5SaveOptions()
{
    // turn off the grid
    ShowGrid = false,
    // turn off the user interface
    ShowUI = false
};

// save 3D scene as HTML5
scene.Save(output, options);
// load resultant HTML in default browser
System.Diagnostics.Process.Start(output);
 
  • About Aspose.3D for .NET API

    Aspose.3D is a CAD and Gameware API to load, modify and convert 3D files. API is a standalone and does not require any any 3D modeling or rendering software. One can easily use API for Discreet3DS, WavefrontOBJ, STL (ASCII, Binary), Universal3D, FBX (ASCII, Binary), Collada, glTF, PLY, GLB, DirectX and more formats.

    Free App to View GLB

    Other Supported Viewer Formats

    Using C#, One can also view many other file formats including.

    3DS (3D Studio DOS Mesh)
    3MF (3D Manufacturing Format)
    AMF (Additive Manufacturing Format)
    ASE (2D Animation File)
    DAE (Digital Asset Exchange)
    DXF (Drawing Interchange Format)
    FBX (3D Format)
    GLTF (GL Transmission Format)
    JT (Jupiter Tessellation File)
    OBJ (3D File Format)
    PLY (Polygon File Format)
    RVM (AVEVA Plant Design Model)
    STL (Interchangeable 3D Surface Geometry)
    U3D (Universal 3D)
    VRML (Virtual Reality Modeling Language)
    X (DirectX Model Image)
    ZIP (ZIP Archiving Format)