Exemplo n.º 1
0
void SWFShape_drawCircle(SWFShape shape, double r)
{
	SWFShape_drawArc(shape, r, 0, 360);
}
Exemplo n.º 2
0
void SWFShape_drawCircle(SWFShape shape, float r)
{
	SWFShape_drawArc(shape, r, 0, 360);
}
Exemplo n.º 3
0
EXPORT BOOL WINAPI s_drawArc(int r, float startAngle, float endAngle, int p4)
{
	lstrcpy(funcname, "s_drawArc");
	SWFShape_drawArc(mhsp_shape, r, startAngle, endAngle);
	return 0;
}