Reputation: 175
I would like to implement basic 3D visualization in my winforms app using DirectX
My model:
Scene control:
Is any "all in one" .net control that I can easy put on form and setup my model by adding shape primitives ?
Upvotes: 5
Views: 1528
Reputation: 175
Finally I've implemented Awesomium WebControl with html page using three.js library. This is allows me easily show 3d models (and dynamically generate model) using GPU acceleration (WebGL backend).
Upvotes: 0
Reputation: 4502
I don't know if there is a control that has the exact functionality you want, but this sample contains a GraphicsDeviceControl
which I've used in the past to obtain a similar control as the one you want. You'll have to add zoom, panning, rotate but this shouldn't be too difficult in 3D world.
Upvotes: 1