コード例 #1
0
void SWFShape_movePen(SWFShape shape, float dx, float dy)
{
	SWFShape_moveScaledPen(shape, (int)rint(dx*Ming_scale),
			 (int)rint(dy*Ming_scale));
}
コード例 #2
0
ファイル: shape_util.c プロジェクト: yixuan/R2SWF-archive
void SWFShape_movePen(SWFShape shape, double dx, double dy)
{
	SWFShape_moveScaledPen(shape, (int)rint(dx*Ming_scale),
			 (int)rint(dy*Ming_scale));
}