gr_draw_points_list
Syntax:
gr_draw_points_list(points_list, x, y, scale_x, scale_y);
Argument name | Type | Description |
---|---|---|
points_list |
ds_list |
A ds_list with Point objects. You can create new points with gr_point_create. |
x |
real |
The x position |
y |
real |
The y position |
scale_x |
real |
The horizontal scale. 1 = no scale. |
scale_y |
real |
The vertical scale. 1 = no scale. |
Returns: (nothing
) Nothing
Description:
Draw the list of points on the screen. This is an advanced function, normally, you want to usegr_draw_gesture
to
draw a gesture, or gr_draw_record
to draw a record.
To configure the colour and width of the line, you MUST use first gr_draw_config
.