Topic : The ATARI Compendium
Author : Scott Sanders / JAY Software
Version : 1.25 (20/6/2003)
Subject : Documentation
Nodes : 1117
Index Size : 32614
HCP-Version : 6
Compiled on : Atari
@charset : UTF-8
@lang : en
@default :
@help : %About
@options : +g -i -t4 +y +z
@width : 100
View Ref-Filev_bez()
v_bez_on()
v_bez_off()
v_bez_qual()
v_set_app_buff()
v_bez_fill() VDI
Syntax
VOID v_bez_fill( handle, count, pxy, bezarr, extent, totpts, totmoves )
WORD handle, count;
WORD *pxy, *extent;
char *bezarr;
WORD *totpts, *totmoves;
Function v_bez_fill() outputs a filled bezier path.
Opcode 9
Sub-Opcode 13
Availability Available only with FONTGDOS, FSMGDOS or SpeedoGDOS.
Parameters Same as v_bez().
Binding WORD i;
contrl[0] = 9;
contrl[1] = count;
contrl[3] = (count + 1)/2;
contrl[5] = 13;
contrl[6] = handle;
for(i = 0;i < count * 2; i++)
ptsin[i] = pxy[i];
for(i = 0;i < count; i++)
intin[i] = (WORD)bezarr[i];
vdi();
*totpts = intin[0];
*totmoves = intin[1];
for(i = 0; i < 4; i++)
extent[i] = ptsout[i];
See Also v_bez(), v_bez_on(), v_bez_off(), v_bez_qual(),
v_set_app_buff()
Group VDI FONTGDOS