如何使用Helixtoolkit WPF应用程序添加纹理3D模型

时间:2016-03-18 15:38:18

标签: wpf 3d textures

//我应该添加什么代码来导入图像作为我的模型的纹理 //我已使用此代码加载3D模型

 ModelVisual3D device3D = new ModelVisual3D () ;

device3D.Content = Display3d(MODEL_PATH);  viewPort3d.Children.Add(device3D);

1 个答案:

答案 0 :(得分:0)

实际上非常简单。使用MaterialHelper

string path = @"path-to-image.png";
Material material = MaterialHelper.CreateImageMaterial(path, 1);
yourModel.Material = material;