In an application I've written, I'd like to include a simple 3D model viewer, specifically FBX. I stumbled onto the Model Viewer inside Visual Studio itself, which looks like a great out-of-the-box solution to my problem. However, I can't find a way to get the Model Viewer inside my actual application. Is there any way to do this?
Asked
Active
Viewed 2,375 times
1
-
this may help too: https://github.com/helix-toolkit – Tigran Oct 05 '15 at 13:00
2 Answers
1
This is not possible. The designer is just Visual Studio's, and can't be embedded into your own application.
There are alternatives though to incorporate the FBX file in your application. One of them is the Autodesk FBX SDK. Alternatives for WPF can be found in How to import 3D models dynamically in a WPF Application.

Community
- 1
- 1

Patrick Hofman
- 153,850
- 22
- 249
- 325
-
-
Sorry, my bad. Maybe the Autodesk FBX SDK? http://www.autodesk.com/products/fbx/overview – Patrick Hofman Oct 06 '15 at 08:29
0
Using MeshContent tag in an Xaml file can import a .fbx file into your app as a .cmo file
The code is in the original Visual Studio 3d Starter Kit 1 & 2 Visual Studio 3D Sta1.sln for VS 2015 Visual Studio 3D Sta2.sln for VS 2015
This easily upgradable to 2019 19041 etc

J Kubitz
- 1
- 1