gpt4 book ai didi

actionscript-3 - as3 : draw circle with a hole in it using only actionscript

转载 作者:行者123 更新时间:2023-12-04 04:29:43 24 4
gpt4 key购买 nike

好的,所以基本上我想在 as3 中画一个圆圈,里面有一个“洞”(就像一个 donut )。像这样的东西,但没有轮廓:

http://www.steel.ie/DugganSteel/Pictures/Hollow-circle.gif

这不起作用:

SPRITE.graphics.beginFill(0xFFFFFF);
SPRITE.graphics.drawCircle(0,0,10);
SPRITE.graphics.endFill();
SPRITE.graphics.drawCircle(0,0,5);

我的意思是这看起来很简单,但我找不到任何信息。我还应该提到,我试图只画 3/4 的圆圈,比如 3/4 的 donut 。所以我打算在原来的圆上画一个透明的圆和正方形,我知道这看起来有点奇怪,因为你希望透明的东西可以显示它下面的东西。

最佳答案

它实际上非常简单。请参阅以下代码:

var p:Point = new Point(100, 100);
graphics.beginFill(0xFF0000);
graphics.drawCircle(p.x, p.y, 100);
graphics.drawCircle(p.x, p.y, 50);

交叉路口相互抵消,直到您调用 endFill
祝你好运!

关于actionscript-3 - as3 : draw circle with a hole in it using only actionscript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3630190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com