I'd like to render a model, then, if particular verticies (how would i mark them?) are visible, i want to render something 2D where they are.
How would i go about doing this?
|
I'd like to render a model, then, if particular verticies (how would i mark them?) are visible, i want to render something 2D where they are. How would i go about doing this? |
|||
|
|
|
First of all, you need your vertex position as a Now simply transform that point to projection space. That is - multiply it by your World-View-Projection matrix. That is:
Now your result will be in projection space, which is (-1,-1) in the bottom left corner of the screen, and (1,1) in the top right corner. If you want to get your position in client space (which is what
Disclaimer: I haven't tested any of this code. (Obviously, to check if a particular vertex is visible or not, simply check if it is in the (-1,-1) to (1,1) range in projection space.) |
|||||
|
|
Take a look at the occlusion culling features of your engine. For XNA, you can consult the framework guide (with samples) here. |
|||
|
|
|
Probably the best way to do this is with a Basically, the shape it makes looks like this:
Example:
The example is actually for culling all objects in the game, but it can be pretty easily modified to handle what you want to do. Example source: http://nfostergames.com/Lessons/SimpleViewCulling.htm To get your world coordinates into screen space, take a look at Viewport.Project. |
||||
|
|