#include <nitro/prc.h>
typedef struct PRCStrokes
{
PRCPoint *points;
int size;
u32 capacity;
} PRCStrokes;
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. |
Holds input from the touch panel as an array of coordinate values. Inserting pen-up markers makes it possible to hold multiple image input.
PRCPoint, PRC_InitStrokes, PRC_AppendPoint, PRC_AppendPenUpMarker, PRC_Clear, PRC_IsFull
06/23/2004 Initial Version