PRCStrokes


Definitions

#include <nitro/prc.h>

typedef struct PRCStrokes
{
    PRCPoint            *points;
    int                 size;
    u32                 capacity;
} PRCStrokes;

Description

Holds input from the touch panel as an array of coordinate values. Inserting pen-up markers makes it possible to hold multiple image input.

Elements

points Pointer to the PRCPoint structure array that actually stores stroke data.
size Number of points currently stored
capacity Maximum number of points that can be stored

See Also

PRCPoint, PRC_InitStrokes, PRC_AppendPoint, PRC_AppendPenUpMarker, PRC_Clear, PRC_IsFull

Revision History

06/23/2004 Initial Version