前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >AS3 角度算法与实现

AS3 角度算法与实现

作者头像
py3study
发布2020-01-10 12:15:54
6020
发布2020-01-10 12:15:54
举报
文章被收录于专栏:python3

学习as3制作动画的时候发现一个好例子,箭头指向鼠标方向很有意思跟大家分享一下,都很简单的例子,箭头实体类代码如下

package { import flash.display.Sprite; public class Arrow extends Sprite   { public function Arrow()     {       init();     } public function init():void     {       graphics.lineStyle(1,0,1);       graphics.beginFill(0xffff00);       graphics.moveTo(-50,-25);       graphics.lineTo(0,-25);       graphics.lineTo(0,-50);       graphics.lineTo(50,0);       graphics.lineTo(0,50);       graphics.lineTo(0,25);       graphics.lineTo(-50,25);       graphics.lineTo(-50,-25);       graphics.endFill();     }   } }

运行类:

package { import flash.display.SpreadMethod; import flash.display.Sprite; import flash.events.Event; import flash.events.KeyboardEvent; import flash.events.MouseEvent; import flash.ui.Keyboard; public class test extends Sprite   { private var arrow:Arrow; public function test()     {       init();     } public function init():void{       arrow = new Arrow();       addChild(arrow);       arrow.x = stage.stageWidth/2;       arrow.y = stage.stageHeight/2;       addEventListener(Event.ENTER_FRAME,ratation);     } public function ratation(event:Event):void{ var dy:Number = mouseY-arrow.y; var dx:Number = mouseX-arrow.x; var ratation:Number = Math.atan2(dy,dx);       arrow.rotation = ratation*180/Math.PI;     }   } }

源代码在附件中

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/08/18 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档