svec.h




Functions

make_svec2

make_svec2

svec2 make_svec2(
    float x,
    float y );

Returns an svec2 structure containing the x and y coordinates given.

Typedefs


svec2

See Also:
__svec2
typedef struct __svec2 {
    float x;
    float y;
} svec2;

A 2 dimensional vector of floats.

Field Descriptions
x
X coordinate
y
Y coordinate

Structs and Unions


__svec2

See Also:
svec2
typedef struct __svec2 {
    float x;
    float y;
} svec2;

A 2 dimensional vector of floats.

Field Descriptions
x
X coordinate
y
Y coordinate

(Last Updated 7/27/2005)