Vertex t: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
{{wrongtitle|title=Vertex_t}}
{{wrongtitle|title=Vertex_t}}
This is a helper for specifying a point with a direction.
This data structure is used in many drawing operations. Note that the two vectors do not use the same coordinate system. ''m_Position'' is in screenspace and ''_TexCoord'' is a texture coordinate (in normalized UV space).
  struct Vertex_t
  struct Vertex_t
  {
  {

Revision as of 17:41, 27 February 2007

Template:Wrongtitle This data structure is used in many drawing operations. Note that the two vectors do not use the same coordinate system. m_Position is in screenspace and _TexCoord is a texture coordinate (in normalized UV space).

struct Vertex_t
{
	Vertex_t() {}
	Vertex_t( const Vector2D &pos, const Vector2D &coord = Vector2D( 0, 0 ) )
	{
		m_Position = pos;
		m_TexCoord = coord;
	}
	void Init( const Vector2D &pos, const Vector2D &coord = Vector2D( 0, 0 ) )
	{
		m_Position = pos;
		m_TexCoord = coord;
	}
	
	Vector2D	m_Position;
	Vector2D	m_TexCoord;
};