Reputation: 3092
I need to display and manipulate data in 3D in winforms or WPF application. It may look something like this:
What libraries I can use to achieve this goal?
Upvotes: 2
Views: 1870
Reputation: 7198
This came up as an answer to what I was looking for. However, I ended up using OpenTK -- an OpenGL control/wrapper for .NET version 2.0 and up (as well as Mono). http://www.opentk.com/doc/chapter/2/glcontrol
Upvotes: 1
Reputation: 4375
Have a look at this link which is a nice tutorial about the System.Windows.Media.Media3D library, which is used in WPF.
Here are some useful links:
MSDN: System.Windows.Media.Media3D-Namespace
3D Game Development with XNA Framework
Upvotes: 2