gf_point_t

Coordinates of a single point

Synopsis:

#include <gf/gf.h>

typedef struct {
    int32_t x;
    int32_t y;
    } gf_point_t;

Description:

The gf_point_t structure describes a 2D coordinate in a Cartesian system where x progresses from the left to the right and y progresses from the top to the bottom. It contains at least the following members:

x
X-axis coordinate, which is the horizontal position of the point.
y
Y-axis coordinate, which is the vertical position of the point.

Classification:

QNX Graphics Framework

See also:

gf_cursor_set(), gf_cursor_set_pos(), gf_draw_bitmap(), gf_draw_blit1(), gf_draw_blit2(), gf_draw_poly_fill(), gf_draw_polyline()