コード例 #1
0
ファイル: shape_util.c プロジェクト: yixuan/R2SWF-archive
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;
}