예제 #1
0
void SWFShape_drawCircle(SWFShape shape, double r)
{
	SWFShape_drawArc(shape, r, 0, 360);
}
예제 #2
0
void SWFShape_drawCircle(SWFShape shape, float r)
{
	SWFShape_drawArc(shape, r, 0, 360);
}
예제 #3
0
파일: minghsp.c 프로젝트: tkhaga/MingHSP
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;
}