Exemple #1
0
void GrUsrVLine(int x,int y1,int y2,GrColor c)
{
	U2SX(x,CURC);
	U2SY(y1,CURC);
	U2SY(y2,CURC);
	GrVLine(x,y1,y2,c);
}
Exemple #2
0
/*
**	Draw Vertical Line
*/
static void
DJGR_drawvline(PSD psd,MWCOORD x, MWCOORD y1, MWCOORD y2, MWPIXELVAL c)
{
	GrVLine(x, y1, y2, c);
}