AS3在0,0处画一个点来表示显示对象的中心

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3在0,0处画一个点来表示显示对象的中心相关的知识,希望对你有一定的参考价值。

A handy little function to dynamically draw a black dot on the stage (or displayObject). This can be useful if you want to see where 0,0 is located.
  1. private function showCentre($doc:DisplayObjectContainer = null, $colour:uint = 0x000000, $radius:Number = 2):void
  2. {
  3. var dot:Shape = new Shape();
  4. dot.graphics.beginFill($colour);
  5. dot.graphics.drawCircle(0, 0, $radius);
  6. dot.graphics.endFill();
  7. $doc.addChild(dot);
  8. }

以上是关于AS3在0,0处画一个点来表示显示对象的中心的主要内容,如果未能解决你的问题,请参考以下文章

python 在x=0,y=0处画线形成十字

python 在x=0,y=0处画线形成十字

flash as3.0里怎样修改元件的缩放中心点,让缩放的中心点一直在舞台中心位置?

AS3 围绕空间点旋转 3D 对象

用flash CS4 as3.0编程实现元件以舞台中心为中心点缩放中遇到的问题,求指教。

as3 怎样显示rectangle的边框到舞台