Ray t: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with '{{wrongtitle|Ray_t}} A structure that has a starting point, a direction and a length that represents a line that has a starting point, and extends infinitely in one direction. …')
 
No edit summary
Line 3: Line 3:




== Members ==
<source lang=cpp>
<source lang=cpp>
VectorAligned  m_Start; // starting point, centered within the extents
VectorAligned  m_Start; // starting point, centered within the extents
Line 16: Line 17:


[[Category:Structures]]
[[Category:Structures]]
[[Category:Helpers]]

Revision as of 01:30, 10 April 2011

Template:Wrongtitle A structure that has a starting point, a direction and a length that represents a line that has a starting point, and extends infinitely in one direction.


Members

	VectorAligned  m_Start;	// starting point, centered within the extents
	VectorAligned  m_Delta;	// direction + length of the ray
	VectorAligned  m_StartOffset;	// Add this to m_Start to get the actual ray start
	VectorAligned  m_Extents;	// Describes an axis aligned box extruded along a ray
	bool	m_IsRay;	// are the extents zero?
	bool	m_IsSwept;	// is delta != 0?

See Also

http://en.wikipedia.org/wiki/Line_(mathematics)#Ray