Reputation: 3515
I recently started working at a company with many custom applications all written in VB, and which I must support/modify. I see an opportunity to creatively display some critical data to my users, and it seems the best way to do so is a form with a 3D model with a stack of cubes, sort of like a bar chart with three axes. I see the FBX editor in the VSIDE, but I'm not sure if that's appropriate for my idea.
Here is what I would like to do:
If it were a static model, I could simply plot the lines in a graphics box, but the ability to rotate a "live" model would be outstanding.
I'm new to 3D modeling, so I'm not sure how to approach this. Can anyone suggest a direction for me to go in?
Upvotes: 0
Views: 9869
Reputation: 32445
Use WPF
.
Create WPF
control with 3D and add it to your Windows form
with ElementHost control .
Hosting a WPF Composite Control in Windows Forms
With WPF you can "easily" implement 3D components.
3-D Graphics Overview
For your particular case I suggest to get known with 3D Charts if you already didn't do this.
Tutorial: Changing to a 3D Chart
Upvotes: 1