如何围绕AS3中的四个角中的两个?

时间:2016-06-08 10:35:26

标签: actionscript-3 flex

如何围绕AS3的四个角中的两个?功能

drawRoundRect(0, 0, width, height, 16);

围绕所有角落,但我只需要2个顶角或仅2个底角。

1 个答案:

答案 0 :(得分:3)

mx.utils.GraphicsUtil中的

drawRoundRectComplex允许您分别指定topLeftRadius,topRightRadius,bottomLeftRadius和bottomRightRadius。

示例:

GraphicsUtil.drawRoundRectComplex(this.graphics,0,0,width,height,20,20,0,0);