1
Answer

lightwave or 3d studio model. with .net

annik

annik

17y
4.1k
1

Does anyone know how I can interact with a lightwave model. I need to be able to identify what part of the model the mouse is pointing to. So if I had a model of a car and I clicked on the bumper, I could somehow tell .net that the user is selecting the bumper. I considered using slightly differnet colors for each part then testing pixels for color. But I don't know if this will work because everyone has different graphic cards and modes. Anyone one do anything like this before?

Thanks,

Annik

Answers (1)
0
bhanu prasannakumar

bhanu prasannakumar

NA 126 125.7k 13y
please give me the code for this one
0
Pradeep Chandraker

Pradeep Chandraker

NA 4k 650.4k 13y

If your 3-tire architecture is something like UI - Service - Database. Where UI talks to service and service talks to database, you may follow below steps:

1. Have forgot password method in your service.
2. Generate new password on your forgot password method and save it in database (you may have some encryption logic for password).
3. If new password is saved successfully on database, return new password to your UI calling method (you may still have password encrypted as it is traveling between service call).
4. Once you have new password returned from service (forgot password) call, email it to end user (if password was encrypted you may decrypt it before sending email).

Let me know if you have any question on this.