make_svec2 |
svec2 make_svec2( float x, float y );
Returns an svec2 structure containing the x and y coordinates given.
svec2 |
typedef struct __svec2 { float x; float y; } svec2;
A 2 dimensional vector of floats.
- x
- X coordinate
- y
- Y coordinate
__svec2 |
typedef struct __svec2 { float x; float y; } svec2;
A 2 dimensional vector of floats.
- x
- X coordinate
- y
- Y coordinate
(Last Updated 7/27/2005)