如何围绕AS3的四个角中的两个?功能
drawRoundRect(0, 0, width, height, 16);
围绕所有角落,但我只需要2个顶角或仅2个底角。
答案 0 :(得分:3)
drawRoundRectComplex
允许您分别指定topLeftRadius,topRightRadius,bottomLeftRadius和bottomRightRadius。
示例:
GraphicsUtil.drawRoundRectComplex(this.graphics,0,0,width,height,20,20,0,0);