Skip to content

C# library for loading and working with .obj models

Notifications You must be signed in to change notification settings

MrAlexeiMK/ObjLoader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ObjLoader

C# library for loading and working with .obj models (extracted from StereoStructure)

string path = "/path/to/obj/file.obj"
Model model = new Model();
model.Load(path); //load .obj model

model.ApplyOperator(new Matrix(OperatorType.ROTATION_3D_X)); //apply rotation operator around axis X
model.Save(path); //save to same file

//After model processing you can display it in HelixToolkit Framework in C# WPF
ObjReader objReader = new ObjReader();
model3d.Content = objReader.Read(path);

About

C# library for loading and working with .obj models

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages