igorbaITALY

Hello everybody,

I'm working with DirectX to develop a simple 3D application in my VB.NET project.

Actually, I'm able to rotate, move and zoom my 3D objet and now I would like to implement the possibility to pick a point on the 3D object with the mouse.

In particular, the user must have the possibility to click everywhere on the object and put a "chek" on the selected point (mybe a circle or similar, I don't know at the moment).

How can I approch the problem From where can I start Does exist some tutorial that can explain me something of analogous

Thanks in advance for your help.

Igor




Re: Game Technologies: General DirectX - How to pick a point on 3D object

The ZMan

http://www.mdxinfo.com/tutorials/picking.php - its c# but I've not see a VB version of 'pick'. There is a C++ one in the SDK.

ALso search, this question is asked and answered all the time in these forums or others. You will need to understand 3d transformation math and 2d barycentric coordinates.






Re: Game Technologies: General DirectX - How to pick a point on 3D object

igorbaITALY

Thank you, now I've something to strat.