Importing 3D model in C# -opengl

11,582

I suggest you use SharpGL. SharpGL library has inbuilt parsers to import models from other formats (.obj and .3ds). It also has WPF and Windows forms control for rendering 3d models in .NET environment. I am currently using it for exporting a 3d model designed in Blender as .Obj and importing it into WPF using SharpGL. It works pretty well for me.

Share:
11,582
Admin
Author by

Admin

Updated on June 04, 2022

Comments

  • Admin
    Admin almost 2 years

    i want to know how to import 3d models from Blender into Opengl using C#.net. Blender can export model in Collada, .3ds, Stanford(.ply), .obj, .x3d and .fbx format. How to use any of the model mention above in C#-opengl. Is there any libraries ?

  • Dinesh Subedi
    Dinesh Subedi over 11 years
    easy model is .obj @Chris Sinclair has provide the link in above comment. You can get lots of sample code in c++ in google just convert it in c#.This type of question in here is off topic just write you own parser if you get any problem then ask here.