GetVectorInSpace: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
 
m (boldiness)
Line 1: Line 1:
== bool GetVectorInScreenSpace( Vector pos, int& iX, int& iY, Vector *vecOffset ) ==
== bool '''GetVectorInScreenSpace'''( Vector pos, int& iX, int& iY, Vector *vecOffset ) ==
This function converts an absolute position in the world to screenspace at the client. Also adds <code>vecOffset</code> to <code>pos</code>. It returns the screenspace positions based on the current resolution, which makes it unnecessary to scale it for other resolutions.
This function converts an absolute position in the world to screenspace at the client. Also adds <code>vecOffset</code> to <code>pos</code>. It returns the screenspace positions based on the current resolution, which makes it unnecessary to scale it for other resolutions.
[[Category:Functions]]
[[Category:Functions]]

Revision as of 15:22, 22 July 2006

bool GetVectorInScreenSpace( Vector pos, int& iX, int& iY, Vector *vecOffset )

This function converts an absolute position in the world to screenspace at the client. Also adds vecOffset to pos. It returns the screenspace positions based on the current resolution, which makes it unnecessary to scale it for other resolutions.